diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml new file mode 100644 index 0000000..5136192 --- /dev/null +++ b/.github/workflows/labeler.yml @@ -0,0 +1,18 @@ +name: Labeler + +on: + pull_request: + paths: + - '**/*' + +jobs: + label: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Label PR + uses: actions/labeler@v2 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }}