Skip to content
Merged
Show file tree
Hide file tree
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
12 changes: 12 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
## PR Checklist

Please confirm before requesting review:

- [ ] I ran `pytest` locally without fails
- [ ] I added/updated tests where needed
- [ ] I updated documentation where needed

Confirm before the final merge/rebase into master

- [ ] Commits are sensibly squashed and rebased onto latest master
- [ ] Standardtest run without difference (with recompiled cython code)
14 changes: 14 additions & 0 deletions .github/workflows/require-checklist.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Require PR Checklist

on:
pull_request:
types: [opened, edited, synchronize, reopened]

jobs:
require-checklist:
runs-on: ubuntu-latest

steps:
- uses: mheap/require-checklist-action@v2
with:
requireChecklist: true
Loading