From 2cd101edb65403fdc93adec04985329afba8f8ea Mon Sep 17 00:00:00 2001 From: Martijn van Dijk Date: Mon, 5 Nov 2018 14:04:51 +0100 Subject: [PATCH] Fix issue templates --- .github/ISSUE_TEMPLATE.md | 31 ------------------- .github/ISSUE_TEMPLATE/a-regression.md | 28 +++++++++++++++++ .github/ISSUE_TEMPLATE/b-bug-report.md | 26 ++++++++++++++++ .github/ISSUE_TEMPLATE/c-feature-request.md | 24 ++++++++++++++ .../ISSUE_TEMPLATE/d-enhancement-proposal.md | 22 +++++++++++++ .github/ISSUE_TEMPLATE/e-question.md | 13 ++++++++ .github/PULL_REQUEST_TEMPLATE.md | 2 ++ 7 files changed, 115 insertions(+), 31 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE.md create mode 100644 .github/ISSUE_TEMPLATE/a-regression.md create mode 100644 .github/ISSUE_TEMPLATE/b-bug-report.md create mode 100644 .github/ISSUE_TEMPLATE/c-feature-request.md create mode 100644 .github/ISSUE_TEMPLATE/d-enhancement-proposal.md create mode 100644 .github/ISSUE_TEMPLATE/e-question.md diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md deleted file mode 100644 index e42ac09..0000000 --- a/.github/ISSUE_TEMPLATE.md +++ /dev/null @@ -1,31 +0,0 @@ - - - - -### Steps to reproduce :scroll: - -1. - -2. - -3. - - -### Expected behavior :thinking: -Tell us what should happen - -### Actual behavior :bug: -Tell us what happens instead - -### Configuration :wrench: - -**Version:** 2.x - -**Platform:** -- [ ] :iphone: iOS -- [ ] :robot: Android -- [ ] :checkered_flag: WPF -- [ ] :earth_americas: UWP -- [ ] :apple: MacOS -- [ ] :tv: tvOS -- [ ] :monkey: Xamarin.Forms diff --git a/.github/ISSUE_TEMPLATE/a-regression.md b/.github/ISSUE_TEMPLATE/a-regression.md new file mode 100644 index 0000000..0e0a93a --- /dev/null +++ b/.github/ISSUE_TEMPLATE/a-regression.md @@ -0,0 +1,28 @@ +--- + +name: 🔙 Regression +about: Report unexpected behavior that worked previously +--- + +## 🔙 Regression + + + +### Old (and correct) behavior + +### Current behavior + +### Reproduction steps + +### Configuration + +**Version:** 1.x + +**Platform:** +- [ ] :iphone: iOS +- [ ] :robot: Android +- [ ] :checkered_flag: WPF +- [ ] :earth_americas: UWP +- [ ] :apple: MacOS +- [ ] :tv: tvOS +- [ ] :monkey: Xamarin.Forms diff --git a/.github/ISSUE_TEMPLATE/b-bug-report.md b/.github/ISSUE_TEMPLATE/b-bug-report.md new file mode 100644 index 0000000..8efb1bf --- /dev/null +++ b/.github/ISSUE_TEMPLATE/b-bug-report.md @@ -0,0 +1,26 @@ +--- + +name: 🐛 Bug Report +about: Create a report to help us fix bugs and make improvements +--- + +## 🐛 Bug Report + + + +### Expected behavior + +### Reproduction steps + +### Configuration + +**Version:** 1.x + +**Platform:** +- [ ] :iphone: iOS +- [ ] :robot: Android +- [ ] :checkered_flag: WPF +- [ ] :earth_americas: UWP +- [ ] :apple: MacOS +- [ ] :tv: tvOS +- [ ] :monkey: Xamarin.Forms diff --git a/.github/ISSUE_TEMPLATE/c-feature-request.md b/.github/ISSUE_TEMPLATE/c-feature-request.md new file mode 100644 index 0000000..21f20f4 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/c-feature-request.md @@ -0,0 +1,24 @@ +--- + +name: 🚀 Feature Request +about: Want to see something new included in the Framework? Submit it! +--- + +## 🚀 Feature Requests + + + +### Contextualize the feature + + +### Describe the feature + + +### Platforms affected (mark all that apply) +- [ ] :iphone: iOS +- [ ] :robot: Android +- [ ] :checkered_flag: WPF +- [ ] :earth_americas: UWP +- [ ] :apple: MacOS +- [ ] :tv: tvOS +- [ ] :monkey: Xamarin.Forms diff --git a/.github/ISSUE_TEMPLATE/d-enhancement-proposal.md b/.github/ISSUE_TEMPLATE/d-enhancement-proposal.md new file mode 100644 index 0000000..3560999 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/d-enhancement-proposal.md @@ -0,0 +1,22 @@ +--- + +name: 🏗 Enhancement Proposal +about: Proposals for code cleanup, refactor and improvements in general +--- + +## 🏗 Enhancement Proposal + + + +### Pitch + + + +### Platforms affected (mark all that apply) +- [ ] :iphone: iOS +- [ ] :robot: Android +- [ ] :checkered_flag: WPF +- [ ] :earth_americas: UWP +- [ ] :apple: MacOS +- [ ] :tv: tvOS +- [ ] :monkey: Xamarin.Forms diff --git a/.github/ISSUE_TEMPLATE/e-question.md b/.github/ISSUE_TEMPLATE/e-question.md new file mode 100644 index 0000000..4ace0c4 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/e-question.md @@ -0,0 +1,13 @@ +--- + +name: 💬 Questions and Help +about: If you have questions, please use this for support +--- + +## 💬 Questions and Help + +For questions or help we recommend checking: + +- The [Lottie tag in Stack Overflow](https://stackoverflow.com/questions/tagged/lottie) +- The [General slack channel in the Xamarin Slack](https://xamarinchat.herokuapp.com/) +- Ask your question in the [Xamarin Forums](https://forums.xamarin.com/) \ No newline at end of file diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index f4fbc2a..b001d7c 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -19,4 +19,6 @@ ### :thinking: Checklist before submitting - [ ] All projects build +- [ ] Follows style guide lines +- [ ] Relevant documentation was updated - [ ] Rebased onto current develop