From 9499030c1c680749ff24e23c74d23fa7a843ae2e Mon Sep 17 00:00:00 2001 From: Lalit sharma Date: Sat, 24 Feb 2024 19:31:05 +0530 Subject: [PATCH] Create label.yml Create Labeler Actions. --- .github/workflows/label.yml | 15 +++++++++++++++ 1 file changed, 15 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 0000000..51e3242 --- /dev/null +++ b/.github/workflows/label.yml @@ -0,0 +1,15 @@ +name: Labeler +on: [pull_request_target] + +jobs: + label: + + runs-on: ubuntu-latest + permissions: + contents: read + pull-requests: write + + steps: + - uses: actions/labeler@v4 + with: + repo-token: "${{ secrets.GITHUB_TOKEN }}"