diff options
author | Joel Challis <git@zvecr.com> | 2020-10-18 20:40:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-18 20:40:37 +0100 |
commit | 84566256552d23fee04c65dd0345fbfbc4df0741 (patch) | |
tree | 8b18a1b4ebf48dbeaff7c1e884970cab21d8b0da | |
parent | 6ad813e811bd1889f8e45afcb671b118ebf5f51d (diff) | |
download | qmk_firmware-84566256552d23fee04c65dd0345fbfbc4df0741.tar.gz qmk_firmware-84566256552d23fee04c65dd0345fbfbc4df0741.zip |
Initial auto PR labeler config (#9814)
* Initial auto PR labeler config
* Update .github/labeler.yml
Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>
* Update since develop merged
Co-authored-by: Nick Brassel <nick@tzarc.org>
Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>
Co-authored-by: Nick Brassel <nick@tzarc.org>
-rw-r--r-- | .github/labeler.yml | 19 | ||||
-rw-r--r-- | .github/workflows/labeler.yml | 13 |
2 files changed, 32 insertions, 0 deletions
diff --git a/.github/labeler.yml b/.github/labeler.yml new file mode 100644 index 000000000..d74f75702 --- /dev/null +++ b/.github/labeler.yml | |||
@@ -0,0 +1,19 @@ | |||
1 | core: | ||
2 | - quantum/**/* | ||
3 | - tmk_core/**/* | ||
4 | - drivers/**/* | ||
5 | - tests/**/* | ||
6 | - util/**/* | ||
7 | - platforms/**/* | ||
8 | keymap: | ||
9 | - users/**/* | ||
10 | - layouts/**/* | ||
11 | - keyboards/**/keymaps/**/* | ||
12 | cli: | ||
13 | - bin/qmk | ||
14 | - requirements.txt | ||
15 | - lib/python/**/* | ||
16 | python: | ||
17 | - '**/*.py' | ||
18 | documentation: | ||
19 | - docs/**/* | ||
diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml new file mode 100644 index 000000000..7abbbeca3 --- /dev/null +++ b/.github/workflows/labeler.yml | |||
@@ -0,0 +1,13 @@ | |||
1 | name: "Pull Request Labeler" | ||
2 | |||
3 | on: | ||
4 | schedule: | ||
5 | - cron: "*/10 * * * *" | ||
6 | |||
7 | jobs: | ||
8 | triage: | ||
9 | runs-on: ubuntu-latest | ||
10 | steps: | ||
11 | - uses: fjeremic/cron-labeler@0.2.0 | ||
12 | with: | ||
13 | repo-token: ${{ secrets.GITHUB_TOKEN }} | ||