From c7798ec494f4e3c3c3b21c5715ad7a5f3c32b902 Mon Sep 17 00:00:00 2001 From: Jonas Zohren <15788906+jfowl@users.noreply.github.com> Date: Thu, 12 Nov 2020 19:38:14 +0100 Subject: [PATCH 1/4] Add templates for issues and PRs Signed-off-by: Jonas Zohren <15788906+jfowl@users.noreply.github.com> --- .github/ISSUE_TEMPLATE/bug_report.md | 40 +++++++++++++++++++ .github/ISSUE_TEMPLATE/enhancement_request.md | 29 ++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 27 +++++++++++++ .github/ISSUE_TEMPLATE/question---other.md | 16 ++++++++ .github/pull_request_template.md | 17 ++++++++ 5 files changed, 129 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/enhancement_request.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/ISSUE_TEMPLATE/question---other.md create mode 100644 .github/pull_request_template.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 000000000..13070148d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,40 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: 'bug' +assignees: '' + +--- + + + + +**Description** + + +**To Reproduce** + + +**Expected behavior** + + +**Logs** + + +**Config** + + +**Your Setup (please complete the following information):** + - Host OS: [e.g. Ubuntu 20.04] + - NodeJS version [run `node --version`] + - HedgeDoc version (Click "Version info" in the footer) + - server [e.g. 2.0] + - client [e.g. 2.0] + +**Additional context** + diff --git a/.github/ISSUE_TEMPLATE/enhancement_request.md b/.github/ISSUE_TEMPLATE/enhancement_request.md new file mode 100644 index 000000000..3d7af9274 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/enhancement_request.md @@ -0,0 +1,29 @@ +--- +name: Enhancement request +about: Suggest an enhancement of an existing feature. +title: '' +labels: 'enhancement' +assignees: '' + +--- + + + + +**Which part of the project should be enhanced?** + + +**Is your enhancement request related to a problem? Please describe.** + + +**Describe the solution you'd like** + + +**Describe alternatives you've considered** + + +**Additional context** + diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 000000000..092a42c99 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,27 @@ +--- +name: Feature request +about: Suggest a new feature for this project, which isn't existing yet. +title: '' +labels: 'feature' +assignees: '' + +--- + + + + + +**Is your feature request related to a problem? Please describe.** + + +**Describe the solution you'd like** + + +**Describe alternatives you've considered** + + +**Additional context** + diff --git a/.github/ISSUE_TEMPLATE/question---other.md b/.github/ISSUE_TEMPLATE/question---other.md new file mode 100644 index 000000000..db6c03919 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/question---other.md @@ -0,0 +1,16 @@ +--- +name: Question / Other +about: Questions about the project, features, or organziational issues +title: '' +labels: question +assignees: '' + +--- + + + + + +**What is your question?** + + diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 000000000..fbc61e54b --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,17 @@ +### Component/Part + + +### Description +This PR fixes/adds/improves/... + +### Steps + + + +- [ ] added implementation +- [ ] added / updated tests +- [ ] added / updated documentation +- [ ] extended changelog + +### Related Issue(s) + From dedfe5fe3fb56eda313573c5dce019b0354f2ffd Mon Sep 17 00:00:00 2001 From: Philip Molares Date: Sat, 14 Nov 2020 21:37:57 +0100 Subject: [PATCH 2/4] Update .github/ISSUE_TEMPLATE/feature_request.md Co-authored-by: David Mehren --- .github/ISSUE_TEMPLATE/feature_request.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 092a42c99..98ef5148f 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -2,7 +2,7 @@ name: Feature request about: Suggest a new feature for this project, which isn't existing yet. title: '' -labels: 'feature' +labels: 'feature request' assignees: '' --- From c522f16e57fb021980bbe1990f339375ea6ea0ee Mon Sep 17 00:00:00 2001 From: Philip Molares Date: Sat, 14 Nov 2020 21:38:02 +0100 Subject: [PATCH 3/4] Update .github/ISSUE_TEMPLATE/bug_report.md Co-authored-by: David Mehren --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 13070148d..8de6e3bed 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,6 +1,6 @@ --- name: Bug report -about: Create a report to help us improve +about: Create a report to help us improve HedgeDoc. title: '' labels: 'bug' assignees: '' From 6fd468dc229c6ac057e6bfafb45399a3ccff5e1c Mon Sep 17 00:00:00 2001 From: David Mehren Date: Sun, 15 Nov 2020 11:47:44 +0100 Subject: [PATCH 4/4] Direct questions to the community forum Signed-off-by: David Mehren --- .github/ISSUE_TEMPLATE/question---other.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/question---other.md b/.github/ISSUE_TEMPLATE/question---other.md index db6c03919..757ba1824 100644 --- a/.github/ISSUE_TEMPLATE/question---other.md +++ b/.github/ISSUE_TEMPLATE/question---other.md @@ -11,6 +11,5 @@ assignees: '' -**What is your question?** +**Please use [the community forum](https://community.hedgedoc.org) to ask questions!** -