pull/39/head
parent
258d016155
commit
0b019de45b
@ -0,0 +1,36 @@ |
|||||||
|
- name: "bug" |
||||||
|
color: "d73a4a" |
||||||
|
description: "Something isn't working" |
||||||
|
- name: "enhancement" |
||||||
|
color: "a2eeef" |
||||||
|
description: "New feature or request" |
||||||
|
- name: "refactor" |
||||||
|
color: "B06E16" |
||||||
|
description: "Change in the structure" |
||||||
|
- name: "documentation" |
||||||
|
color: "0075ca" |
||||||
|
description: "Improvements or additions to documentation" |
||||||
|
- name: "meta" |
||||||
|
color: "1D76DB" |
||||||
|
description: "Something related to the project itself" |
||||||
|
|
||||||
|
- name: "duplicate" |
||||||
|
color: "cfd3d7" |
||||||
|
description: "This issue or pull request already exists" |
||||||
|
|
||||||
|
- name: "help wanted" |
||||||
|
color: "008672" |
||||||
|
description: "Extra help is needed" |
||||||
|
- name: "urgent" |
||||||
|
color: "D93F0B" |
||||||
|
description: "" |
||||||
|
- name: "wontfix" |
||||||
|
color: "ffffff" |
||||||
|
description: "This will not be worked on" |
||||||
|
- name: "invalid" |
||||||
|
color: "e4e669" |
||||||
|
description: "This doesn't seem right" |
||||||
|
|
||||||
|
- name: "question" |
||||||
|
color: "d876e3" |
||||||
|
description: "Further information is requested" |
@ -0,0 +1,23 @@ |
|||||||
|
name: meta-github |
||||||
|
|
||||||
|
on: |
||||||
|
push: |
||||||
|
branches: |
||||||
|
- dev |
||||||
|
|
||||||
|
jobs: |
||||||
|
labeler: |
||||||
|
runs-on: ubuntu-latest |
||||||
|
steps: |
||||||
|
- |
||||||
|
name: Checkout |
||||||
|
uses: actions/checkout@v2 |
||||||
|
- |
||||||
|
name: Run Labeler |
||||||
|
if: success() |
||||||
|
uses: crazy-max/ghaction-github-labeler@v3 |
||||||
|
with: |
||||||
|
github-token: ${{ secrets.GITHUB_TOKEN }} |
||||||
|
yaml-file: .github/labels.yml |
||||||
|
skip-delete: false |
||||||
|
dry-run: false |
Loading…
Reference in new issue