From 66b0cadea13e901a465ebb4f131282e9d3a69363 Mon Sep 17 00:00:00 2001 From: Vijay Shanker Sharma Date: Sat, 15 Jun 2024 09:19:49 +0530 Subject: [PATCH] Added tags workflow flow for issues --- .github/workflows/issues-tags.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/issues-tags.yml diff --git a/.github/workflows/issues-tags.yml b/.github/workflows/issues-tags.yml new file mode 100644 index 00000000..79741dde --- /dev/null +++ b/.github/workflows/issues-tags.yml @@ -0,0 +1,25 @@ +name: Auto Label Issues + +on: + issues: + types: [opened] + +permissions: + issues: write + +jobs: + label: + runs-on: ubuntu-latest + + steps: + - name: Check out the repository + uses: actions/checkout@v3 + + - name: Add Labels to Issues + if: github.event_name == 'issues' + uses: actions-ecosystem/action-add-labels@v1.1.1 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + labels: | + gssoc + good new issue \ No newline at end of file