-
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
manage issue labels with labeler action
- Loading branch information
Showing
2 changed files
with
64 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,43 @@ | ||
- name: bug | ||
color: d93f0b | ||
description: Something isn't working as expected | ||
|
||
- name: new feature | ||
color: "159818" | ||
description: Requests to add new functionality | ||
|
||
- name: enhancement | ||
color: c5def5 | ||
description: Changes to an existing feature | ||
|
||
- name: documentation | ||
color: e0d216 | ||
description: Related to the docs | ||
|
||
- name: internal | ||
color: f4ca81 | ||
description: Changes that aren't user-facing | ||
|
||
- name: "tag: duplicate" | ||
color: "2e3234" | ||
description: Similar issue already exists | ||
|
||
- name: "tag: in-progress" | ||
color: "2e3234" | ||
description: Task is in progress | ||
|
||
- name: "tag: completed" | ||
color: "2e3234" | ||
description: Issue was completed successfully | ||
|
||
- name: "tag: wontfix" | ||
color: "2e3234" | ||
description: Proposal will not be implemented | ||
|
||
- name: "tag: help wanted" | ||
color: "2e3234" | ||
description: Maintainer is looking for help with the issue | ||
|
||
- name: "tag: good first issue" | ||
color: "2e3234" | ||
description: Issues suitable for new contributors |
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,21 @@ | ||
name: Update issue labels | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
paths: | ||
- .github/labels.yml | ||
- .github/workflows/labeler.yml | ||
|
||
jobs: | ||
labeler: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Run Labeler | ||
uses: crazy-max/ghaction-github-labeler@v5 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} |