From d4f1b42309b9e8ce6fd058e118666e82c2214c06 Mon Sep 17 00:00:00 2001 From: Keith Hill Date: Sat, 12 May 2018 16:45:00 -0600 Subject: [PATCH] Take advantage of multiple issue templatesShamelessly ripping this off from the PSSA GH repo --- .../ISSUE_TEMPLATE/Bug_report.md | 10 ++++++++++ .github/ISSUE_TEMPLATE/Feature_request.md | 15 +++++++++++++++ .github/ISSUE_TEMPLATE/Support_request.md | 8 ++++++++ .../ISSUE_TEMPLATE/Syntax_Colorization_Report.md | 8 ++++++++ .github/PULL_REQUEST_TEMPLATE.md | 15 +++++++++++++++ 5 files changed, 56 insertions(+) rename ISSUE_TEMPLATE.md => .github/ISSUE_TEMPLATE/Bug_report.md (78%) create mode 100644 .github/ISSUE_TEMPLATE/Feature_request.md create mode 100644 .github/ISSUE_TEMPLATE/Support_request.md create mode 100644 .github/ISSUE_TEMPLATE/Syntax_Colorization_Report.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE/Bug_report.md similarity index 78% rename from ISSUE_TEMPLATE.md rename to .github/ISSUE_TEMPLATE/Bug_report.md index 42add43923..1523d3554d 100644 --- a/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE/Bug_report.md @@ -1,3 +1,9 @@ +--- +name: Bug report 🐛 +about: Report errors or unexpected behavior 🤔 + +--- + + +## PR Checklist + +Note: Tick the boxes below that apply to this pull request by putting an `x` between the square brackets. +Please mark anything not applicable to this PR `NA`. + +- [ ] PR has a meaningful title +- [ ] Summarized changes +- [ ] This PR is ready to merge and is not work in progress + - If the PR is work in progress, please add the prefix `WIP:` to the beginning of the title and remove the prefix when the PR is ready + +@tylerl0706