From e0c1c13004e038ff30eb8c483e567bed7a7b926f Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Thu, 16 Jun 2016 14:28:40 -0700 Subject: [PATCH] chore(.github): improve github issue and PR templates the current templates accidentaly introduce tasks list which is confusing to both people submitting the issue as well as triaging it. --- .github/ISSUE_TEMPLATE.md | 22 ++++++++++++---------- .github/PULL_REQUEST_TEMPLATE.md | 26 +++++++++++++++----------- 2 files changed, 27 insertions(+), 21 deletions(-) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 26fa0740e0..ef34e038ac 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -1,7 +1,9 @@ -* **I'm submitting a ...** -- [ ] bug report -- [ ] feature request -- [ ] support request => Please do not submit support request here, see note at the top of this template. +**I'm submitting a ...** (check one with "x") +``` +[ ] bug report +[ ] feature request +[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question +``` **Current behavior** @@ -9,22 +11,22 @@ **Expected/desired behavior** -* **If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem** via -https://plnkr.co or similar (you can use this template as a starting point: http://plnkr.co/edit/tpl:AvJOMERrnz94ekVua0u5). +**Reproduction of the problem** +If the current behavior is a bug or you can illustrate your feature request better with an example, please provide the steps to reproduce and if possible a minimal demo of the problem via https://plnkr.co or similar (you can use this template as a starting point: http://plnkr.co/edit/tpl:AvJOMERrnz94ekVua0u5). -* **What is the expected behavior?** +**What is the expected behavior?** -* **What is the motivation / use case for changing the behavior?** +**What is the motivation / use case for changing the behavior?** -* **Please tell us about your environment:** +**Please tell us about your environment:** -* **Angular version:** 2.0.0-beta.X +* **Angular version:** 2.0.0-rc.X * **Browser:** [all | Chrome XX | Firefox XX | IE XX | Safari XX | Mobile Chrome XX | Android X.X Web Browser | iOS XX Safari | iOS XX UIWebView | iOS XX WKWebView ] diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index e60ff7bb2b..2bf6cb28df 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -4,14 +4,16 @@ - [ ] Docs have been added / updated (for bug fixes / features) -**What kind of change does this PR introduce?** (Bug fix, feature, docs update, ...) -- [ ] Bugfix -- [ ] Feature -- [ ] Code style update (formatting, local variables) -- [ ] Refactoring (no functional changes, no api changes) -- [ ] Build related changes -- [ ] CI related changes -- [ ] Other... Please describe: +**What kind of change does this PR introduce?** (check one with "x") +``` +[ ] Bugfix +[ ] Feature +[ ] Code style update (formatting, local variables) +[ ] Refactoring (no functional changes, no api changes) +[ ] Build related changes +[ ] CI related changes +[ ] Other... Please describe: +``` **What is the current behavior?** (You can also link to an open issue here) @@ -21,9 +23,11 @@ -**Does this PR introduce a breaking change?** -- [ ] Yes -- [ ] No +**Does this PR introduce a breaking change?** (check one with "x") +``` +[ ] Yes +[ ] No +``` If this PR contains a breaking change, please describe the impact and migration path for existing applications: ...