-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Create labels.yml * add bounty label * Create labels.yaml
- Loading branch information
1 parent
04093e2
commit 8a9eaaa
Showing
2 changed files
with
89 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
- name: "bug 🐛" | ||
color: "d73a4a" | ||
description: "Something isn't working" | ||
|
||
- name: "documentation 📜" | ||
color: "0075ca" | ||
description: "Improvements or additions to documentation" | ||
|
||
- name: "feature ✨" | ||
color: "a2eeef" | ||
description: "New feature or request" | ||
|
||
- name: "performance ⚡" | ||
color: "fbca04" | ||
description: "Benchmarks or performance improvements" | ||
|
||
- name: "question ❓" | ||
color: "5319e7" | ||
description: "Further information is requested" | ||
|
||
- name: "structure 🧱" | ||
color: "0052cc" | ||
description: "Structure refactors or changes" | ||
|
||
- name: "test ✏️" | ||
color: "0e8a16" | ||
description: "Testing improvements" | ||
|
||
- name: "priority-high 🔥" | ||
color: "b60205" | ||
description: "High priority tasks" | ||
|
||
- name: "priority-medium ⚡" | ||
color: "fbca04" | ||
description: "Medium priority tasks" | ||
|
||
- name: "priority-low 🌱" | ||
color: "0e8a16" | ||
description: "Low priority tasks" | ||
|
||
- name: "good first issue 👋" | ||
color: "7057ff" | ||
description: "Good for newcomers" | ||
|
||
- name: "help wanted 🆘" | ||
color: "008672" | ||
description: "Extra attention is needed" | ||
|
||
- name: "tech debt 🏗️" | ||
color: "ff7619" | ||
description: "Technical debt and cleanup tasks" | ||
|
||
- name: "ci/cd 🔄" | ||
color: "44cc11" | ||
description: "Changes to CI/CD pipeline" | ||
|
||
- name: "dependencies 📦" | ||
color: "cb7eed" | ||
description: "Dependency updates and maintenance" | ||
|
||
- name: "discussion 💭" | ||
color: "5319e7" | ||
description: "Needs discussion or decisions" | ||
|
||
- name: "bounty 🏴☠️" | ||
color: "#fef2c0" | ||
description: "Closing this rewards a bounty!" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Sync Labels | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- '.github/labels.yaml' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
sync: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: micnncim/action-label-syncer@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
manifest: .github/labels.yaml | ||
prune: true |