-
Notifications
You must be signed in to change notification settings - Fork 512
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add "needs testing" label if contributor comments "ready for testing" (…
…#7488) * adds need testing label #7479 * Update .github/workflows/auto-testing-label.yml Co-authored-by: Khavin Shankar <[email protected]> --------- Co-authored-by: Khavin Shankar <[email protected]>
- Loading branch information
1 parent
5264c0a
commit 06eaaa8
Showing
1 changed file
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.' | ||
}); | ||
} |