From 754089c1bd4c3334b208ce8046f00964f238dbd7 Mon Sep 17 00:00:00 2001 From: Samyak Aditya <91079592+samyak-aditya@users.noreply.github.com> Date: Sun, 13 Oct 2024 15:27:15 +0530 Subject: [PATCH] Create auto-label.yml --- .github/workflows/auto-label.yml | 36 ++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/auto-label.yml diff --git a/.github/workflows/auto-label.yml b/.github/workflows/auto-label.yml new file mode 100644 index 0000000..d488cc2 --- /dev/null +++ b/.github/workflows/auto-label.yml @@ -0,0 +1,36 @@ +name: Auto Label Issue + +on: + issues: + types: [opened, reopened, edited] + +jobs: + label_issue: + runs-on: ubuntu-latest + permissions: + issues: write + steps: + - name: Label Issue + uses: actions/github-script@v6 + with: + github-token: ${{secrets.GITHUB_TOKEN}} + script: | + const issue = context.payload.issue; + const issueBody = issue.body ? issue.body.toLowerCase() : ''; + const issueTitle = issue.title.toLowerCase(); + + // Add gssoc label to all issues + await github.rest.issues.addLabels({ + owner: context.repo.owner, + repo: context.repo.repo, + issue_number: issue.number, + labels: ['gssoc-ext','hacktoberfest-accepted','hacktoberfest'] + }); + const addLabel = async (label) => { + await github.rest.issues.addLabels({ + owner: context.repo.owner, + repo: context.repo.repo, + issue_number: issue.number, + labels: [label] + }); + };