-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
46 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,29 @@ | ||
- name: "Status: 🗯️ Waiting for feedback" | ||
color: "f7d692" | ||
- name: "Status: 🔴 Blocked" | ||
color: "f7d692" | ||
description: "Blocked by another issue or pull request" | ||
- name: "Status: 🔒 After next release" | ||
color: "f7d692" | ||
description: "Will be done after the next release" | ||
|
||
- name: "Closed: ⚰️ Inactive" | ||
color: "959a9c" | ||
description: "No answer was received for weeks" | ||
- name: "Closed: 👥 Duplicate" | ||
color: "959a9c" | ||
description: "Issue duplicates an existing issue" | ||
- name: "Closed: 🗑️ Bad issue" | ||
color: "959a9c" | ||
- name: "Closed: ☠️ cannot be done" | ||
color: "959a9c" | ||
|
||
- name: "Priority: 🚨 Urgent" | ||
color: "03adfc" | ||
- name: "Priority: 💤 Low priority" | ||
color: "03adfc" | ||
|
||
- name: "Popularity: ❤️🔥 extreme" | ||
color: "ffc7ea" | ||
- name: "Popularity: ❤️ high" | ||
color: "ffc7ea" |
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,17 @@ | ||
name: labels | ||
on: | ||
push: | ||
branches: [main] | ||
paths: | ||
- .github/labels.yml | ||
- .github/workflows/labels.yml | ||
jobs: | ||
labeler: | ||
permissions: | ||
issues: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: crazy-max/ghaction-github-labeler@v5 | ||
with: | ||
yaml-file: .github/labels.yml |