Skip to content

Commit

Permalink
ci: add review-checklist workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mrcjkb authored and vhyrro committed Dec 1, 2023
1 parent 9d49fc4 commit 32b33b6
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/review-checklist.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
---
name: Review Checklist

on:
pull_request_target:
types: [opened, review_requested]

jobs:
review-checklist:
name: Review Checklist
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v7
with:
script: |
const body = context.payload.pull_request.body
if (body && body.startsWith(":robot: I have created a release *beep* *boop*")) { return; }
const { data: comments } = await github.rest.issues.listComments({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
});
// if comment already exists, then just return
if (comments.find(comment => comment.body.includes("### Review Checklist"))) { return; }
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: `### Review Checklist
Does this PR follow the [Contribution Guidelines](https://github.com/nvim-neorocks/rocks.nvim/blob/master/CONTRIBUTING.md)? Following is a _partial_ checklist:
Proper [conventional commit](https://www.conventionalcommits.org/en/v1.0.0/) scoping:
- For example, `fix(installer):` if you are fixing an installer bug.
- [ ] Pull request title has the appropriate conventional commit prefix.
If applicable:
- [ ] Tested
- [ ] Tests have been added.
- [ ] Tested manually (steps in PR description).
- [ ] Updated documentation.
`,
})

0 comments on commit 32b33b6

Please sign in to comment.