diff options
author | Mnikolenko Productengine <mnikolenko@productengine.com> | 2022-11-22 17:35:50 +0200 |
---|---|---|
committer | Mnikolenko Productengine <mnikolenko@productengine.com> | 2022-11-22 17:38:01 +0200 |
commit | daa1257466ee3cf000e2c94ef05259577ea513b4 (patch) | |
tree | 95be80a13dad5f04d39d8a2ff0f459b4cd8dcdc8 /.github/workflows/label.yaml | |
parent | baecfe14c2b841b520a94b7b95fec8881ea06113 (diff) | |
parent | 783926e124a96414443dfb9dcb5229e698ef29e7 (diff) |
Merge branch 'master' into DRTVWR-539
Diffstat (limited to '.github/workflows/label.yaml')
-rw-r--r-- | .github/workflows/label.yaml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/label.yaml b/.github/workflows/label.yaml new file mode 100644 index 0000000000..6e41d8aa2d --- /dev/null +++ b/.github/workflows/label.yaml @@ -0,0 +1,15 @@ +name: Pull Request Labeler +on: + - pull_request_target + +jobs: + triage: + permissions: + contents: read + pull-requests: write + runs-on: ubuntu-latest + steps: + - uses: actions/labeler@v4 + with: + configuration-path: .github/labeler.yaml + repo-token: "${{ secrets.GITHUB_TOKEN }}" |