diff --git a/.github/labels.yml b/.github/labels.yml new file mode 100644 index 00000000..bace6e20 --- /dev/null +++ b/.github/labels.yml @@ -0,0 +1,18 @@ +- name: status/possible-priority + description: This issue is ready to work and should be considered as a potential priority + color: F9D0C4 +- name: status/prioritized + description: This issue has been triaged and resolving it is a priority + color: BFD4F2 +- name: status/blocked + description: This issue has been triaged and resolving it is blocked on some other issue + color: 848978 +- name: bug + description: Something isn't working + color: d73a4a +- name: enhancement + description: A new feature or request + color: a2eeef +- name: documentation + description: This issue relates to writing documentation + color: D4C5F9 diff --git a/.github/workflows/synchronize-labels.yml b/.github/workflows/synchronize-labels.yml new file mode 100644 index 00000000..1c04394a --- /dev/null +++ b/.github/workflows/synchronize-labels.yml @@ -0,0 +1,17 @@ +name: Synchronize Labels +"on": + push: + branches: + - main + paths: + - .github/labels.yml +jobs: + synchronize: + name: Synchronize Labels + runs-on: + - ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: micnncim/action-label-syncer@v1 + env: + GITHUB_TOKEN: ${{ github.token }}