From c5577c8901e91fe8d04785d1f0e6ebd5e4d039f4 Mon Sep 17 00:00:00 2001 From: EvB Date: Wed, 1 Feb 2017 15:04:16 -0500 Subject: [PATCH] feat(.github): add PR template --- .dockerignore | 1 + .github/PULL_REQUEST_TEMPLATE.md | 29 +++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.dockerignore b/.dockerignore index ce563e77b..7dc82840b 100644 --- a/.dockerignore +++ b/.dockerignore @@ -6,6 +6,7 @@ venv .git !.git/HEAD .gitignore +.github Bobfile README.md ROADMAP.md diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 000000000..d79c4a917 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,29 @@ + +### Description of Changes + +* details about the implementation of the changes +* motivation for the change (broken code, new feature, etc) +* contrast with previous behavior + + +#### Changes: + +* .. +* .. + +#### Issue: + + +**TESTING** -> + +**BREAKING CHANGE** -> + + +--- + +## Reviewer Checklist + +- [ ] It works! +- [ ] Comments provide sufficient explanations for the next contributor +- [ ] Tests cover changes and corner cases +- [ ] Follows Quay syntax patterns and format