diff options
| author | Joel Challis <git@zvecr.com> | 2019-10-25 14:34:54 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-10-25 14:34:54 +0100 |
| commit | 32fdf4805ae8d76649fa821275cc2333c5e8bba9 (patch) | |
| tree | fef6e512824ce435ab009586f91ff0842b7e283a /.github | |
| parent | 581a8fa0580628d3c2c248bfe966d433f5460ab7 (diff) | |
| download | qmk_firmware-32fdf4805ae8d76649fa821275cc2333c5e8bba9.tar.gz qmk_firmware-32fdf4805ae8d76649fa821275cc2333c5e8bba9.zip | |
Initial actions/labeler config (#7091)
* Initial actions/labeler config
* Initial actions/labeler config - add extra from review
Diffstat (limited to '.github')
| -rw-r--r-- | .github/labeler.yml | 18 | ||||
| -rw-r--r-- | .github/workflows/labeler.yml | 11 |
2 files changed, 29 insertions, 0 deletions
diff --git a/.github/labeler.yml b/.github/labeler.yml new file mode 100644 index 000000000..f4b07765c --- /dev/null +++ b/.github/labeler.yml | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | core: | ||
| 2 | - quantum/**/* | ||
| 3 | - tmk_core/**/* | ||
| 4 | - drivers/**/* | ||
| 5 | - tests/**/* | ||
| 6 | - util/**/* | ||
| 7 | keymap: | ||
| 8 | - users/**/* | ||
| 9 | - layouts/**/* | ||
| 10 | - keyboards/**/keymap/**/* | ||
| 11 | cli: | ||
| 12 | - bin/qmk | ||
| 13 | - requirements.txt | ||
| 14 | - lib/python/**/* | ||
| 15 | python: | ||
| 16 | - '**/*.py' | ||
| 17 | documentation: | ||
| 18 | - docs/**/* | ||
diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml new file mode 100644 index 000000000..dcafb97dc --- /dev/null +++ b/.github/workflows/labeler.yml | |||
| @@ -0,0 +1,11 @@ | |||
| 1 | name: "Pull Request Labeler" | ||
| 2 | on: | ||
| 3 | - pull_request | ||
| 4 | |||
| 5 | jobs: | ||
| 6 | triage: | ||
| 7 | runs-on: ubuntu-latest | ||
| 8 | steps: | ||
| 9 | - uses: actions/labeler@v2 | ||
| 10 | with: | ||
| 11 | repo-token: "${{ secrets.GITHUB_TOKEN }}" | ||
