diff --git a/.github/workflows/pr-auto-label.yml b/.github/workflows/pr-auto-label.yml new file mode 100644 index 0000000000..b8a5dd94a7 --- /dev/null +++ b/.github/workflows/pr-auto-label.yml @@ -0,0 +1,19 @@ +name: "Pull Request Labeler" +on: +- pull_request_target + +jobs: + sync: + permissions: + contents: read + pull-requests: write + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v2 + - name: Sync labels with closing issues + uses: wd60622/closing-labels@v0.0.3 + with: + exclude: "help wanted,needs info" + env: + GH_TOKEN: ${{ github.token }}