Skip to content

TEST COMMIT DO NOT MERGE #64

TEST COMMIT DO NOT MERGE

TEST COMMIT DO NOT MERGE #64

Workflow file for this run

name: Review Checklist
on:
pull_request_target:
types: [review_requested]
jobs:
review-checklist:
name: Review Checklist
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v6
with:
script: |
const issues = await github.paginate(github.rest.issues.listComments({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
}))
for (const issue of issues) {
if (issue.body.includes("### Review Checklist")) {
return // review checklist has already been commented
}
}
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 [development guidelines](https://algebraicjulia.github.io/Catlab.jl/dev/devdocs/style/)? Following is a *partial* checklist:
**Tests**
- [ ] New features and bug fixes have unit tests
- [ ] New modules have tests that are ultimately called by the test runner (\`test/runtests.jl\`)
- [ ] Existing tests have not been deleted
- [ ] Code coverage >= 90% or reduction justified in PR
**Documentation**
- [ ] All exported functions, types, and constants have docstrings, written in complete sentences
- [ ] Citations are given for any constructions, algorithms, or code drawn from external sources
**Other**
- [ ] Style guidelines are followed, including indent width 2
- [ ] Changes breaking backwards compatibility have been approved`,
})