From 5cb267c742d57d502021542139818c95edef9492 Mon Sep 17 00:00:00 2001 From: Nico Rehwaldt Date: Fri, 29 Nov 2019 15:15:30 +0100 Subject: [PATCH] chore(project): rework issue templates * Disable creation of blank issues * Add generic task template * Add link to community forum * Simplify and unify existing templates * Add basic labels where applicable --- .github/ISSUE_TEMPLATE/BUG_REPORT.md | 11 ++--------- .github/ISSUE_TEMPLATE/FEATURE_REQUEST.md | 12 ++---------- .github/ISSUE_TEMPLATE/TASK.md | 14 ++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 5 +++++ 4 files changed, 23 insertions(+), 19 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/TASK.md create mode 100644 .github/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/BUG_REPORT.md b/.github/ISSUE_TEMPLATE/BUG_REPORT.md index 42797f0c..d10b05a7 100644 --- a/.github/ISSUE_TEMPLATE/BUG_REPORT.md +++ b/.github/ISSUE_TEMPLATE/BUG_REPORT.md @@ -1,16 +1,9 @@ --- name: Bug report -about: Create a report to help us fix a library error +about: Report a problem and help us fix it. +labels: "bug" --- - - __Describe the Bug__ diff --git a/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md b/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md index 974d97b5..e72eeedc 100644 --- a/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md +++ b/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md @@ -1,17 +1,9 @@ --- name: Feature request -about: Suggest an idea or general improvement +about: Suggest an idea or general improvement. +labels: "enhancement" --- - - __Is your feature request related to a problem? Please describe.__ diff --git a/.github/ISSUE_TEMPLATE/TASK.md b/.github/ISSUE_TEMPLATE/TASK.md new file mode 100644 index 00000000..759e0f96 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/TASK.md @@ -0,0 +1,14 @@ +--- +name: Task +about: Describe a generic activity we should carry out. +--- + + +__What should we do?__ + + + + +__Why should we do it?__ + + \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..db905c14 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,5 @@ +blank_issues_enabled: false +contact_links: + - name: Ask a question + url: https://forum.bpmn.io + about: Head over to our community forum to ask questions and get answers. \ No newline at end of file