aboutsummaryrefslogtreecommitdiff
path: root/.github/PULL_REQUEST_TEMPLATE.md
diff options
context:
space:
mode:
authorRobert Helgesson <robert@rycee.net>2020-04-08 19:22:36 +0200
committerRobert Helgesson <robert@rycee.net>2020-04-08 19:29:57 +0200
commit5cdbfc9064498d9425d10ba2420b073f8e2c7035 (patch)
tree288643198fee4d054b99f47ae1b9f2ec22993d6b /.github/PULL_REQUEST_TEMPLATE.md
parent068ff76a10e95820f886ac46957edcff4e44621d (diff)
Add code owners and pull request template
Diffstat (limited to '')
-rw-r--r--.github/PULL_REQUEST_TEMPLATE.md34
1 files changed, 34 insertions, 0 deletions
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
new file mode 100644
index 00000000000..623d179a282
--- /dev/null
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -0,0 +1,34 @@
+<!--
+
+ Please fill the description and checklist to the best of your
+ ability.
+
+-->
+
+### Description
+
+
+
+### Checklist
+
+- [ ] Code formatted with `./format`.
+
+- [ ] Code tested through `nix-shell --pure tests -A run.all`.
+
+- [ ] Test cases updated/added. See [example](https://github.com/rycee/home-manager/commit/f3fbb50b68df20da47f9b0def5607857fcc0d021#diff-b61a6d542f9036550ba9c401c80f00ef).
+
+- [ ] Commit messages are formatted like
+
+ ```
+ {component}: {description}
+
+ {long description}
+ ```
+
+ See [CONTRIBUTING](https://github.com/rycee/home-manager/blob/master/CONTRIBUTING.md#commits) for more information and [recent commit messages](https://github.com/rycee/home-manager/commits/master) for examples.
+
+- If this PR adds a new module
+
+ - [ ] Added myself as module maintainer. See [example](https://github.com/rycee/home-manager/blob/068ff76a10e95820f886ac46957edcff4e44621d/modules/programs/lesspipe.nix#L6).
+
+ - [ ] Added myself and the module files to `.github/CODEOWNERS`.