-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from deemaze/add-labeler-action
Add labeler action to keep labels in sync
- Loading branch information
Showing
3 changed files
with
66 additions
and
5 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,35 @@ | ||
- name: breaking | ||
description: 💥 Breaking Changes | ||
color: #B60205 | ||
|
||
- name: bug | ||
description: 🐛 Bug Fixes | ||
color: #EB410A | ||
|
||
- name: feature | ||
description: 🚀 New Features | ||
color: #FBCA04 | ||
|
||
- name: enhancement | ||
description: ✨ Improvements | ||
color: #59D6E6 | ||
|
||
- name: documentation | ||
description: 📝 Documentation Updates | ||
color: #6EC67B | ||
|
||
- name: internal | ||
description: 🔧 Internal Changes | ||
color: #DB749F | ||
|
||
- name: tests | ||
description: 🚦 Tests | ||
color: #B0B3B8 | ||
|
||
- name: dependencies | ||
description: 📦 Dependency Updates | ||
color: #0366D6 | ||
|
||
- name: skip-changelog | ||
desc: 🚫 Excludes a PR from the release changelog | ||
color: #CABA9C |
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
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,26 @@ | ||
name: Keep labels up to date | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- '.github/labels.yml' | ||
- '.github/workflows/labeler.yml' | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
labeler: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out the repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Run Labeler | ||
uses: crazy-max/ghaction-github-labeler@v5 | ||
with: | ||
skip-delete: true |