From 04c8d00b2705142915ff931a846d3786556bc6e5 Mon Sep 17 00:00:00 2001 From: Pascal Precht Date: Wed, 7 Nov 2018 10:20:01 +0100 Subject: [PATCH] chore: introduce issue and pull request templates --- .github/ISSUE_TEMPLATE.md | 24 ------------- .github/ISSUE_TEMPLATE/Bug.md | 44 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/Feature_Request.md | 13 +++++++ .github/ISSUE_TEMPLATE/Proposal.md | 9 +++++ .github/PULL_REQUEST_TEMPLATE.md | 11 ------ .github/PULL_REQUEST_TEMPLATE/Bugfix.md | 20 +++++++++++ .github/PULL_REQUEST_TEMPLATE/Feature.md | 20 +++++++++++ 7 files changed, 106 insertions(+), 35 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE.md create mode 100644 .github/ISSUE_TEMPLATE/Bug.md create mode 100644 .github/ISSUE_TEMPLATE/Feature_Request.md create mode 100644 .github/ISSUE_TEMPLATE/Proposal.md delete mode 100644 .github/PULL_REQUEST_TEMPLATE.md create mode 100644 .github/PULL_REQUEST_TEMPLATE/Bugfix.md create mode 100644 .github/PULL_REQUEST_TEMPLATE/Feature.md diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md deleted file mode 100644 index 5ca98339a..000000000 --- a/.github/ISSUE_TEMPLATE.md +++ /dev/null @@ -1,24 +0,0 @@ -## Overview -**TL;DR** - - -### Extra Detail - -#### Steps to reproduce -1. -2. -3. -#### Screenshots - - -#### Logs - - -#### Context (Environment) -* OS: -* Embark Version: -* Node Version: -* NPM Version: - -### Questions? -- Leave a comment on this issue! Make sure to use @ mentions if you want a specific person's attention! diff --git a/.github/ISSUE_TEMPLATE/Bug.md b/.github/ISSUE_TEMPLATE/Bug.md new file mode 100644 index 000000000..93cd57d5e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/Bug.md @@ -0,0 +1,44 @@ +--- +name: 🐞 Bug Report +about: Something is broken? 🔨 +--- + +### Bug Report + +#### Summary + + + +#### Current behavior + + + +#### How to reproduce + + + +#### Expected behavior + + + +#### If you encounter an error, please create a logfile using the following command and post the output here + +``` +$ embark run --nodashboard --logfile log.txt --loglevel trace +``` + +#### Please provide additional information about your system + +**OS**: +**Embark Version**: +**Node Version**: +**NPM Version**: + +#### Sometimes issues are related to Embark's installation. Can you provide information on how Embark was installed? + diff --git a/.github/ISSUE_TEMPLATE/Feature_Request.md b/.github/ISSUE_TEMPLATE/Feature_Request.md new file mode 100644 index 000000000..c818dab0b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/Feature_Request.md @@ -0,0 +1,13 @@ +--- +name: 🎉 Feature Request +about: You have a neat idea that should be implemented? 🎩 +--- + +### Feature Request + + + +#### Summary + + + diff --git a/.github/ISSUE_TEMPLATE/Proposal.md b/.github/ISSUE_TEMPLATE/Proposal.md new file mode 100644 index 000000000..47e33a23b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/Proposal.md @@ -0,0 +1,9 @@ +--- +name: 🤔 Proposal +about: Have a nice proposal? +--- + +### Proposal description + + + diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md deleted file mode 100644 index b1fcd3e18..000000000 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ /dev/null @@ -1,11 +0,0 @@ -## Overview -**TL;DR** - - -### Questions - - -### Review - - -### Cool Spaceship Picture diff --git a/.github/PULL_REQUEST_TEMPLATE/Bugfix.md b/.github/PULL_REQUEST_TEMPLATE/Bugfix.md new file mode 100644 index 000000000..e4aaf6aa4 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE/Bugfix.md @@ -0,0 +1,20 @@ +--- +name: ⚙ Bugfix +about: Fixed a bug? 🐞 +--- + +### What bug have you fixed? + + + +#### How did you fix it (give a brief summary)? + + + +### Questions + + +### Review + + +### Cool Spaceship Picture diff --git a/.github/PULL_REQUEST_TEMPLATE/Feature.md b/.github/PULL_REQUEST_TEMPLATE/Feature.md new file mode 100644 index 000000000..686bcd441 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE/Feature.md @@ -0,0 +1,20 @@ +--- +name: ⚙ Feature +about: Implemented a new feature? 🎁 +--- + +### What feature did you implement? + + + +#### Anything that needs special attention (breaking changes etc)? + + + +### Questions + + +### Review + + +### Cool Spaceship Picture