Skip to content

Commit

Permalink
ci: Add labeler workflow (#8)
Browse files Browse the repository at this point in the history
ci: Add labeler workflow
  • Loading branch information
FnrDev authored Feb 2, 2022
2 parents 687f66a + 5179174 commit c5695aa
Show file tree
Hide file tree
Showing 5 changed files with 55 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
patreon: fnrdev
9 changes: 9 additions & 0 deletions .github/labeler.yml
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/*'
24 changes: 24 additions & 0 deletions .github/labels.yml
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'
10 changes: 10 additions & 0 deletions .github/pull_request_template.yml
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.
-->
11 changes: 11 additions & 0 deletions .github/workflows/labeler.yml
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 }}"

0 comments on commit c5695aa

Please sign in to comment.