Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add PR review checklist #1192

Closed
wants to merge 4 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions .github/workflows/PR_reviews.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: comment-on-pr example
on: pull_request
jobs:
review:
name: PR review
runs-on: ubuntu-latest
steps:
- name: comment PR
uses: unsplash/comment-on-pr@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
msg: "Before a PR is accepted, it must meet the following criteria: \n
- [ ] Is the necessary information provided? \n
\t - [ ] Does the PR have a complete description? Does it explain what the PR is attempting to do/fix, does it explain how it does this? \n
\t - [ ] Is there an explanation of why this PR is needed? \n
\t - [ ] Please use the [TARDIS PR template](https://github.com/tardis-sn/tardis/blob/master/.github/PULL_REQUEST_TEMPLATE.md) \n
- [ ] Is this a duplicate PR? \n
\t - [ ] If a new PR is clearly a duplicate, ask how this PR is different from the original PR? \n
\t - [ ] If this PR is about to be merged, close the original PR with a link to this new PR that solved the issue. \n
- [ ] Does it pass existing tests and are new tests provided if required? \n
\t - [ ] The test coverage should not decrease, and for new features should be at or very close to 100%. \n
- [ ] Is the code properly documented? \n
\t - [ ] If this modifies existing code, then the docs should be updated. If this adds a new feature, additional documentation should be created. \n
\t - [ ] Sphinx and docstrings in the code (in numpydoc format) \n
- [ ] Does this conform to PEP 8 and the TARDIS style guidelines? \n
- [ ] Does the PR fix the problem it describes? \n
\t - [ ] Make sure it doesn’t e.g. just fix the problem for a specific case \n
\t - [ ] Is this the best way of fixing the problem? \n
- [ ] Is the code tidy? \n
\t - [ ] No unnecessary print lines or code comments \n"
check_for_duplicate_msg: true # this is only commented once