-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: this is how PR templates are supposed to work apparently
bonus: new github action that will now auto-label, auto-assign and auto-request review from relevant people 👍
- Loading branch information
1 parent
b31ed39
commit e6ea010
Showing
6 changed files
with
90 additions
and
26 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
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
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
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
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,4 @@ | ||
pull_request_templates: | ||
- .github/PULL_REQUEST_TEMPLATE/01-add-an-alternative.md | ||
- .github/PULL_REQUEST_TEMPLATE/02-site-changes.md | ||
- .github/PULL_REQUEST_TEMPLATE/03-chore-stuff.md |
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,79 @@ | ||
name: Auto Label PRs, then add assignees and reviewers automatically. | ||
|
||
on: | ||
pull_request: | ||
types: [opened, edited, synchronize] | ||
|
||
jobs: | ||
add_labels_reviewers_assignees: | ||
name: Add labels, then reviewers & assignees | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Label PR based on content | ||
uses: actions/github-script@v6 | ||
id: label-pr | ||
with: | ||
script: | | ||
const labels = { | ||
'Alternative addition template': 'add mod', | ||
'Site changes template': 'enhancement', | ||
'Chore/documentation template': 'documentation' | ||
}; | ||
const body = context.payload.pull_request.body.toLowerCase(); | ||
const foundLabels = Object.entries(labels) | ||
.filter(([keyword]) => body.includes(keyword)) | ||
.map(([, label]) => label); | ||
if (foundLabels.length > 0) { | ||
await github.issues.addLabels({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
issue_number: context.payload.pull_request.number, | ||
labels: foundLabels | ||
}); | ||
} | ||
return foundLabels; | ||
- name: Set Reviewers and Assignees | ||
if: steps.label-pr.outputs.result | ||
uses: actions/github-script@v6 | ||
with: | ||
script: | | ||
const labelToReviewers = { | ||
'add mod': ['KTrain5169', 'blryface'], | ||
'enhancement': ['WorldWidePixel', 'Nitrrine'], | ||
'documentation': ['blryface', 'KTrain5169', 'WorldWidePixel'] | ||
}; | ||
const labels = ${{ steps.label-pr.outputs.result }}; | ||
const reviewers = new Set(); | ||
labels.forEach(label => { | ||
(labelToReviewers[label] || []).forEach(reviewer => reviewers.add(reviewer)); | ||
}); | ||
if (reviewers.size > 0) { | ||
await github.pulls.requestReviewers({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
pull_number: context.payload.pull_request.number, | ||
reviewers: Array.from(reviewers) | ||
}); | ||
} | ||
await github.issues.addAssignees({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
issue_number: context.payload.pull_request.number, | ||
assignees: [context.payload.pull_request.user.login] | ||
}); | ||
- name: Comment on PRs | ||
uses: dannyskoog/pull-request-comment@v1 | ||
with: | ||
message: I've labeled your PR, assigned you and requested reviews from the relevant people automatically. If you think I did it wrong, please comment below so one of our maintainers can double-check. Thanks! |