From f97906d3975b25f3dcd9af8950166b5232f412b2 Mon Sep 17 00:00:00 2001 From: Simon Ho Date: Mon, 17 Oct 2016 09:02:24 -0700 Subject: [PATCH] Add pull request template (#2843) (#2862) Backport of #2843 --- .github/PULL_REQUEST_TEMPLATE.md | 34 ++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 00000000..d35410be --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,34 @@ + + +### Type of change + + + +- [ ] SEMVER-MAJOR -- Backwards-incompatible changes +- [ ] SEMVER-MINOR -- Add functionality in a backwards-compatible manner +- [ ] SEMVER-PATCH -- Backwards-compatible bug fixes + +### Description of change(s) + + + +### Link(s) to related GitHub issues + + + +### Checklist + +- [ ] CLA signed +- [ ] Commit message conforms with the [Git commit message + guidelines](http://loopback.io/doc/en/contrib/git-commit-messages.html) +- [ ] New tests are added to cover all changes +- [ ] Code passes `npm test` +- [ ] Code conforms with the [style + guide](http://loopback.io/doc/en/contrib/style-guide.html) +- [ ] All CI builds are passing (semi-required, left up to discretion of the + reviewer)