diff --git a/.github/labeler.yml b/.github/labeler.yml new file mode 100644 index 00000000..8a5e56b2 --- /dev/null +++ b/.github/labeler.yml @@ -0,0 +1,6 @@ +documentation: +- "docs/**/*" +CI: +- "**/*.yml" +testing: +- test/* diff --git a/.github/workflows/label.yml b/.github/workflows/label.yml new file mode 100644 index 00000000..7f7881ee --- /dev/null +++ b/.github/workflows/label.yml @@ -0,0 +1,11 @@ +name: "Labeler" +on: +- pull_request + +jobs: + triage: + runs-on: ubuntu-latest + steps: + - uses: actions/labeler@v2 + with: + repo-token: "${{ secrets.GITHUB_TOKEN }}"