From 6a6c2ac8faacfbb910652b8dd6f5cacd016cfc49 Mon Sep 17 00:00:00 2001 From: Jos Ahrens Date: Mon, 21 Oct 2019 18:37:01 +0000 Subject: [PATCH] github: implement newer version of issue templates Moves away from the older version of GitHub issue templates, includes automatic labelling. more reading: https://help.github.com/en/github/building-a-strong-community/about-issue-and-pull-request-templates --- .github/ISSUE_TEMPLATE.md | 3 --- .github/ISSUE_TEMPLATE/Bug_Report.md | 9 +++++++++ .github/ISSUE_TEMPLATE/Feature.md | 7 +++++++ .github/ISSUE_TEMPLATE/Question.md | 9 +++++++++ 4 files changed, 25 insertions(+), 3 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE.md create mode 100644 .github/ISSUE_TEMPLATE/Bug_Report.md create mode 100644 .github/ISSUE_TEMPLATE/Feature.md create mode 100644 .github/ISSUE_TEMPLATE/Question.md diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md deleted file mode 100644 index 46e6e8de..00000000 --- a/.github/ISSUE_TEMPLATE.md +++ /dev/null @@ -1,3 +0,0 @@ -I am using Monolog version 1|2 - -... the problem/suggestion/question here ... diff --git a/.github/ISSUE_TEMPLATE/Bug_Report.md b/.github/ISSUE_TEMPLATE/Bug_Report.md new file mode 100644 index 00000000..71ce0c2b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/Bug_Report.md @@ -0,0 +1,9 @@ +--- +name: Bug Report +about: Create a bug report +labels: Bug +--- + +Monolog version 1|2 + +Write your bug report here. diff --git a/.github/ISSUE_TEMPLATE/Feature.md b/.github/ISSUE_TEMPLATE/Feature.md new file mode 100644 index 00000000..9ef03eec --- /dev/null +++ b/.github/ISSUE_TEMPLATE/Feature.md @@ -0,0 +1,7 @@ +--- +name: Feature +about: Suggest a new feature or enhancement +labels: Feature +--- + +Write your suggestion here. diff --git a/.github/ISSUE_TEMPLATE/Question.md b/.github/ISSUE_TEMPLATE/Question.md new file mode 100644 index 00000000..b2810fa3 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/Question.md @@ -0,0 +1,9 @@ +--- +name: Question +about: Ask a question regarding software usage +labels: Support +--- + +Monolog version 1|2 + +Write your question here.