generated from FnrDev/fnr-template
-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Add labeler workflow
- Loading branch information
Showing
5 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 @@ | ||
patreon: fnrdev |
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,9 @@ | ||
chore: | ||
- 'README.md' | ||
- '.gitignore' | ||
- 'package.json' | ||
- 'LICENSE' | ||
|
||
ci: | ||
- '.github/*' | ||
- '.github/workflows/*' |
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,24 @@ | ||
- name: 'chore' | ||
color: 'bfd4f2' | ||
- name: 'ci' | ||
color: '491043' | ||
- name: 'bug' | ||
color: 'd73a4a' | ||
- name: 'duplicate' | ||
color: 'cfd3d7' | ||
- name: 'feat' | ||
color: 'FBCA04' | ||
- name: 'fix' | ||
color: 'B99F0C' | ||
- name: 'good first issue' | ||
color: '7057ff' | ||
- name: 'help wanted' | ||
color: '008672' | ||
- name: 'invalid' | ||
color: 'e4e669' | ||
- name: 'question' | ||
color: 'd876e3' | ||
- name: 'refactor' | ||
color: '0FF5D6' | ||
- name: 'wontfix' | ||
color: 'ffffff' |
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,10 @@ | ||
**Please describe the changes this PR makes and why it should be merged:** | ||
|
||
**Status and versioning classification:** | ||
|
||
<!-- | ||
Please move lines that apply to you out of the comment: | ||
- Code changes have been tested against the Discord API, or there are no code changes | ||
- This PR includes breaking changes (methods removed or renamed, parameters moved or removed) | ||
- This PR **only** includes non-code changes, like changes to documentation, README, etc. | ||
--> |
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,11 @@ | ||
name: "Pull Request Labeler" | ||
on: | ||
- pull_request_target | ||
|
||
jobs: | ||
triage: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/labeler@v3 | ||
with: | ||
repo-token: "${{ secrets.GITHUB_TOKEN }}" |