From 9baf93a502d71f2ada609139a247558382657eff Mon Sep 17 00:00:00 2001 From: Markus Podar Date: Mon, 7 Sep 2020 19:02:38 +0200 Subject: [PATCH] Add github issue/PR templates (#1041) --- .github/ISSUE_TEMPLATE/1_Bug_report.md | 24 ++++++++++++++++++++ .github/ISSUE_TEMPLATE/2_Feature_request.md | 12 ++++++++++ .github/ISSUE_TEMPLATE/3_Support_question.md | 15 ++++++++++++ .github/PULL_REQUEST_TEMPLATE.md | 18 +++++++++++++++ 4 files changed, 69 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/1_Bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/2_Feature_request.md create mode 100644 .github/ISSUE_TEMPLATE/3_Support_question.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/ISSUE_TEMPLATE/1_Bug_report.md b/.github/ISSUE_TEMPLATE/1_Bug_report.md new file mode 100644 index 0000000..c130a0c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/1_Bug_report.md @@ -0,0 +1,24 @@ +--- +name: "🐛 Bug Report" +about: 'Report a general bug.' +labels: bug + +--- + +### Versions: +- ide-helper Version: #.#.# +- Laravel Version: #.#.# +- Lumen Version: #.#.# +- PHP Version: #.#.# + +### Description: + + + +### Steps To Reproduce: + +- … diff --git a/.github/ISSUE_TEMPLATE/2_Feature_request.md b/.github/ISSUE_TEMPLATE/2_Feature_request.md new file mode 100644 index 0000000..a74be14 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/2_Feature_request.md @@ -0,0 +1,12 @@ +--- +name: "✨ Feature request" +about: 'Suggest a new feature or other improvements.' +labels: enhancement + +--- + +### Summary + + diff --git a/.github/ISSUE_TEMPLATE/3_Support_question.md b/.github/ISSUE_TEMPLATE/3_Support_question.md new file mode 100644 index 0000000..20f4a76 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/3_Support_question.md @@ -0,0 +1,15 @@ +--- +name: "🙋🏼‍♂️ Support question" +about: 'I need assistance or clarification on usage of this library.' +labels: question + +--- + +### Versions: +- ide-helper Version: #.#.# +- Laravel Version: #.#.# +- Lumen Version: #.#.# +- PHP Version: #.#.# + +### Question: + diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..c9e9e0b --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,18 @@ +## Summary + + +## Type of change + + + +- [ ] Bug fix (non-breaking change which fixes an issue) +- [ ] New feature (non-breaking change which adds functionality) +- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) +- [ ] This change requires a documentation update +- [ ] Misc. change (internal, infrastructure, maintenance, etc.) + +### Checklist +- [ ] Existing tests have been adapted and/or new tests have been added +- [ ] Add a CHANGELOG.md entry +- [ ] Update the README.md +- [ ] Code style has been fixed via `composer fix-style`