Skip to content

Commit

Permalink
Add "needs testing" label if contributor comments "ready for testing" (
Browse files Browse the repository at this point in the history
…#7488)

* adds need testing label #7479

* Update .github/workflows/auto-testing-label.yml

Co-authored-by: Khavin Shankar <khavinshankar@gmail.com>

---------

Co-authored-by: Khavin Shankar <khavinshankar@gmail.com>
  • Loading branch information
saloni0419 and khavinshankar committed May 7, 2024
1 parent 5264c0a commit 06eaaa8
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/auto-testing-label.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Auto Add Needs Testing Label

on:
pull_request:
types: [opened, reopened, edited]
issue_comment:
types: [created]
pull_request_review:
types: [submitted]

jobs:
auto_label:
runs-on: ubuntu-latest

steps:
- name: Check PR Conditions and Add Label
id: check_conditions
uses: actions/github-script@v5
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const pr = context.payload.pull_request;
const isDraft = pr.draft;
const isReadyForTestingComment = context.payload.comment?.body.includes('ready for testing');
const isChangesRequired = context.payload.review?.state === 'changes_requested';
if ((isReadyForTestingComment && !isDraft) || (!isDraft && pr.draft_changed)) {
await github.issues.addLabels({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: pr.number,
labels: ['needs testing']
});
}
if (isChangesRequired) {
await github.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: pr.number,
body: 'Reminder: To add the "needs testing" label, comment "ready for testing" on this PR.'
});
}

0 comments on commit 06eaaa8

Please sign in to comment.