~ruther/qmk_firmware

32fdf4805ae8d76649fa821275cc2333c5e8bba9 — Joel Challis 5 years ago 581a8fa
Initial actions/labeler config (#7091)

* Initial actions/labeler config

* Initial actions/labeler config - add extra from review
2 files changed, 29 insertions(+), 0 deletions(-)

A .github/labeler.yml
A .github/workflows/labeler.yml
A .github/labeler.yml => .github/labeler.yml +18 -0
@@ 0,0 1,18 @@
core:
  - quantum/**/*
  - tmk_core/**/*
  - drivers/**/*
  - tests/**/*
  - util/**/*
keymap:
  - users/**/*
  - layouts/**/*
  - keyboards/**/keymap/**/*
cli:
  - bin/qmk
  - requirements.txt
  - lib/python/**/*
python:
  - '**/*.py'
documentation:
  - docs/**/*

A .github/workflows/labeler.yml => .github/workflows/labeler.yml +11 -0
@@ 0,0 1,11 @@
name: "Pull Request Labeler"
on:
- pull_request

jobs:
  triage:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/labeler@v2
      with:
        repo-token: "${{ secrets.GITHUB_TOKEN }}"