Browse Source

Reorganize and update PR template (#5106)

* Reorganize and update PR template

* Update PULL_REQUEST_TEMPLATE.md

* Remove required info for bugfixes
dev
Chris Fritz 8 years ago
committed by Evan You
parent
commit
0bcad13bb3
  1. 65
      .github/PULL_REQUEST_TEMPLATE.md

65
.github/PULL_REQUEST_TEMPLATE.md

@ -3,38 +3,33 @@ Please make sure to read the Pull Request Guidelines:
https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#pull-request-guidelines https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#pull-request-guidelines
--> -->
<!-- ISSUE TEMPLATE --> <!-- PULL REQUEST TEMPLATE -->
**Please check if the PR fulfills these requirements** <!-- (Update "[ ]" to "[x]" to check a box) -->
- [ ] Do not submit PRs against the master branch.
- [ ] Checkout a topic branch from the relevant branch, e.g. dev, and merge back against that branch. **What kind of change does this PR introduce?** (check at least one)
- [ ] The tests are running: https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#development-setup
- [ ] Bugfix
If adding new feature: - [ ] Feature
- [ ] Added accompanying test case. - [ ] Code style update
- [ ] In the commit message, provide convincing reason to add this feature. - [ ] Refactor
Ideally you should open a suggestion issue first and have it greenlighted before working on it. - [ ] Build-related changes
- [ ] Other, please describe:
If fixing a bug:
- [ ] If you are resolving a special issue, add (fix #xxxx[,#xxx]) (#xxxx is the issue id) in your PR title **Does this PR introduce a breaking change?** (check one)
- [ ] Provide detailed description of the bug in the PR. Live demo preferred.
- [ ] Add appropriate test coverage if applicable. - [ ] Yes
- [ ] No
**What kind of change does this PR introduce?** (check at least one with "x")
``` If yes, please describe the impact and migration path for existing applications:
[ ] Bugfix
[ ] Feature **The PR fulfills these requirements:**
[ ] Code style update
[ ] Refactoring - [ ] It's submitted to the `dev` branch for v2.x (or to a previous version branch), _not_ the `master` branch
[ ] Build related changes - [ ] When resolving a specific issue, it's referenced in the PR's title (e.g. `fix #xxx[,#xxx]`, where "xxx" is the issue number)
[ ] Other... Please describe: - [ ] All tests are passing: https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#development-setup
``` - [ ] New/updated tests are included
**Does this PR introduce a breaking change?** (check one with "x") If adding a **new feature**, the PR's description includes:
``` - [ ] A convincing reason for adding this feature (to avoid wasting your time, it's best to open a suggestion issue first and wait for approval before working on it)
[ ] Yes
[ ] No **Other information:**
```
If this PR contains a breaking change, please describe the impact and migration path for existing applications:
**Other information**:

Loading…
Cancel
Save