diff --git a/.github/labels.yml b/.github/labels.yml new file mode 100644 index 0000000..15ca9fe --- /dev/null +++ b/.github/labels.yml @@ -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" diff --git a/.github/workflows/labels.yml b/.github/workflows/labels.yml new file mode 100644 index 0000000..baee770 --- /dev/null +++ b/.github/workflows/labels.yml @@ -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