From 0622f12285a4986c7bd2c322e22149bb94532dab Mon Sep 17 00:00:00 2001 From: Hamish Willee Date: Thu, 26 Jun 2025 14:48:27 +1000 Subject: [PATCH] Create Labeler workflow --- .github/workflows/label.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/label.yml diff --git a/.github/workflows/label.yml b/.github/workflows/label.yml new file mode 100644 index 0000000000..1a69cfdbf5 --- /dev/null +++ b/.github/workflows/label.yml @@ -0,0 +1,21 @@ +# This workflow will triage pull requests and apply a label based on the +# paths that are modified in the pull request. +# The paths are set up in .github/labeler.yml +# +# See: https://github.com/actions/labeler + +name: Labeler +on: [pull_request_target] + +jobs: + label: + + runs-on: ubuntu-latest + permissions: + contents: read + pull-requests: write + + steps: + - uses: actions/labeler@v5 + with: + repo-token: "${{ secrets.GITHUB_TOKEN }}"