-
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.
UII-19683 Add labeler workflow to .github repository (#7)
- Loading branch information
1 parent
3e557c8
commit 500a998
Showing
2 changed files
with
55 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,27 @@ | ||
- name: "bug" | ||
color: "d73a4a" | ||
description: "Something isn't working" | ||
- name: "dependencies" | ||
color: "fbca04" | ||
description: "Update of dependencies" | ||
- name: "documentation" | ||
color: "0075ca" | ||
description: "Improvements or additions to documentation" | ||
- name: "enhancement" | ||
color: "008672" | ||
description: "New feature or request" | ||
- name: "size/XS" | ||
color: "0e8a16" | ||
description: "PR with minimal changes" | ||
- name: "size/S" | ||
color: "0EFABD" | ||
description: "PR with small changes" | ||
- name: "size/M" | ||
color: "75CEF4" | ||
description: "PR with medium changes" | ||
- name: "size/L" | ||
color: "FBCA04" | ||
description: "PR with large changes" | ||
- name: "size/XL" | ||
color: "B60205" | ||
description: "PR with very large changes" |
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,28 @@ | ||
--- | ||
name: Labeler | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- .github/config/labels.yml | ||
|
||
jobs: | ||
modify-labels: | ||
name: Modify labels | ||
|
||
runs-on: ubuntu-22.04 | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
|
||
- name: Run Labeler | ||
uses: crazy-max/[email protected] | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
yaml-file: .github/config/labels.yml | ||
skip-delete: false | ||
dry-run: false |