From ffe316d009fceba2e70feb0809a904cc9c51dbd3 Mon Sep 17 00:00:00 2001 From: irongut Date: Mon, 22 Nov 2021 01:33:05 +0000 Subject: [PATCH] added pr labeler action --- .github/workflows/pr-labeler.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/pr-labeler.yml diff --git a/.github/workflows/pr-labeler.yml b/.github/workflows/pr-labeler.yml new file mode 100644 index 0000000..aa1a9f8 --- /dev/null +++ b/.github/workflows/pr-labeler.yml @@ -0,0 +1,16 @@ +# Applies labels to pull requests based on paths & files modified in the pull request. +# +# .github/labeler.yml contains the list of labels & files / folders to match, see: +# https://github.com/actions/labeler/blob/master/README.md + +name: PR Labeler +on: + pull_request_target: + +jobs: + label: + runs-on: ubuntu-latest + steps: + - uses: actions/labeler@v3 + with: + repo-token: "${{ secrets.GITHUB_TOKEN }}"