This repository has been archived by the owner on Jan 18, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 140
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
55 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,55 @@ | ||
name: Issue Template Checks | ||
|
||
on: | ||
issues: | ||
types: [opened, labeled, edited] | ||
|
||
jobs: | ||
check-required-fields: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Comment on Issues Missing Required Fields | ||
uses: actions/github-script@v6 | ||
with: | ||
script: | | ||
const issue = context.payload.issue; | ||
const issueLabels = issue.labels.map(label => label.name); | ||
const hasRelevantLabel = issueLabels.includes('failed-test') || issueLabels.includes('verified-test'); | ||
|
||
// Proceed only if the issue has a relevant label | ||
if (!hasRelevantLabel) { | ||
console.log("Issue does not have relevant labels. Skipping."); | ||
return; | ||
} | ||
|
||
const requiredFields = [ | ||
"Browser:", | ||
"OS:", | ||
"Adblock Solution", | ||
"Description of Issue:", | ||
"Test Result:", | ||
]; | ||
|
||
// Helper function to check if a required field is missing | ||
const isFieldMissing = (field) => { | ||
return !issue.body.includes(field) || issue.body.includes(field + " "); | ||
}; | ||
|
||
// Find all missing fields | ||
const missingFields = requiredFields.filter(isFieldMissing); | ||
|
||
// If there are missing fields, post a comment | ||
if (missingFields.length > 0) { | ||
const commentBody = `Hello @${issue.user.login}, it looks like your issue is missing some required information: \n- ${missingFields.join("\n- ")}\nPlease update your issue to include this information.`; | ||
await github.rest.issues.createComment({ | ||
issue_number: issue.number, | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
body: commentBody | ||
}); | ||
} else { | ||
console.log("Issue contains all required fields."); | ||
} |