GitHub Action to manage labels on GitHub (create/rename/update/delete) as code.
In the repository where you want to perform this action, create the YAML file
.github/labels.yml (you can also set a custom filename) that
looks like:
- name: "bug"
color: "#d73a4a"
description: "Something isn't working"
- name: "documentation"
color: "#0075ca"
description: "Improvements or additions to documentation"
- name: "duplicate"
color: "#cfd8d7"
description: "This issue or pull request already exists"
- name: "enhancement"
color: "#a22eef"
- name: "wontfix_it"
color: "#000000"
description: "This will not be worked on"
from_name: "wontfix"name,coloranddescriptionare the main GitHub label fieldsdescriptioncan be omit if your want to keep the current onefrom_nameallow to rename a label from one currently available on your repository
name: github
on:
push:
branches:
- 'main'
paths:
- '.github/labels.yml'
- '.github/workflows/labels.yml'
pull_request:
paths:
- '.github/labels.yml'
- '.github/workflows/labels.yml'
jobs:
labeler:
runs-on: ubuntu-latest
permissions:
contents: read
issues: write
steps:
-
name: Run Labeler
uses: crazy-max/ghaction-github-labeler@v6
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
yaml-file: .github/labels.yml
dry-run: ${{ github.event_name == 'pull_request' }}
exclude: |
help*
*issueWith this workflow, the YAML configuration above on a fresh repository, this will:
- Skip
bug(because samecoloranddescription) - Skip
documentation(because samecoloranddescription) - Update
duplicate(coloris different) - Update
enhancement(coloris different, keep currentdescription) - Leave
good first issuealone (because it matches anexcludepattern) - Leave
help wantedalone (because it matches anexcludepattern) - Delete
invalid - Delete
question - Rename
wontfixtowontfix_itand setcoloranddescription
Following inputs can be used as step.with keys
Want to contribute? Awesome! The most basic way to show your support is to star the project, or to raise issues. You can also support this project by becoming a sponsor on GitHub or by making a PayPal donation to ensure this journey continues indefinitely!
Thanks again for your support, it is much appreciated! 🙏
MIT. See LICENSE for more details.

