diff options
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/pr-labeler.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.github/workflows/pr-labeler.yml b/.github/workflows/pr-labeler.yml new file mode 100644 index 0000000000..39067d1d99 --- /dev/null +++ b/.github/workflows/pr-labeler.yml @@ -0,0 +1,11 @@ +name: "Pull Request Labeler" +on: + - pull_request_target + +jobs: + triage: + runs-on: ubuntu-latest + steps: + - uses: actions/labeler@v3 + with: + repo-token: "${{ secrets.GITHUB_TOKEN }}" |