From 5c13633eb59d6663b3d17ff59959c80b4dc24f40 Mon Sep 17 00:00:00 2001 From: Goni Zahavy Date: Thu, 29 Jan 2026 12:15:52 +0200 Subject: [PATCH] feat(core): added gh workflow that adds 'contributor' label to PRs/Issues --- .github/workflows/contributors-label.yml | 33 ++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/contributors-label.yml diff --git a/.github/workflows/contributors-label.yml b/.github/workflows/contributors-label.yml new file mode 100644 index 000000000000..cdcd98cb53ed --- /dev/null +++ b/.github/workflows/contributors-label.yml @@ -0,0 +1,33 @@ +name: Add Contributors Label + +on: + issues: + types: [opened] + + pull_request_target: + types: [opened] + +jobs: + add-contributor-label: + runs-on: ubuntu-latest + permissions: + pull-requests: write + issues: write + + steps: + - name: Add Contributor Label + uses: actions/github-script@v8 + with: + script: | + const isPR = !!context.payload.pull_request; + const issueNumber = isPR ? context.payload.pull_request.number : context.payload.issue.number; + const authorAssociation = isPR ? context.payload.pull_request.author_association : context.payload.issue.author_association; + + if (authorAssociation === 'CONTRIBUTOR') { + await github.rest.issues.addLabels({ + owner: context.repo.owner, + repo: context.repo.repo, + issue_number: issueNumber, + labels: ['contributor'] + }); + }