diff options
author | Robert Hensing <robert@roberthensing.nl> | 2023-01-10 22:50:56 +0100 |
---|---|---|
committer | Robert Hensing <robert@roberthensing.nl> | 2023-01-10 22:50:56 +0100 |
commit | fd7569393bae53e8203bbbada59bb171ba7a70ed (patch) | |
tree | ce7a57ccf6e82ef15bfe9b1e51a5ecde5d975c50 | |
parent | 1c98daf6e8bdf771ed3b17c947384fef4ed8d006 (diff) |
.github: Add pull request template
-rw-r--r-- | .github/PULL_REQUEST_TEMPLATE.md | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 000000000..1625b9366 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,22 @@ +##### Motivation for the changes + +<!-- An issue reference or explanation why the change is desirable. --> +<!-- This speeds up step 1 of the process. --> + + + + + + +##### Checklist for maintainers + +<!-- Contributors: please leave this as is --> +<!-- Maintainers: tick if completed or explain if not relevant --> + + - [ ] is the idea good? has it been discussed by the Nix team? + - [ ] unit tests + - [ ] functional tests (`tests/**.sh`) + - [ ] documentation in the manual + - [ ] documentation in the code (if necessary; ideally code is already clear) + - [ ] documentation in the commit message (why was this change made? for future reference when maintaining the code) + - [ ] documentation in the changelog (to announce features and fixes to existing users who might have to do something to finally solve their problem, and to summarize the development history) |