From 8d4d5bebbb9b6df00cdb03cfac41c80df13b4720 Mon Sep 17 00:00:00 2001 From: Geoffrey Huntley Date: Fri, 11 Nov 2022 04:17:41 +0000 Subject: [PATCH 1/4] removed old template --- .github/ISSUE_TEMPLATE/external_bug_report.md | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/external_bug_report.md diff --git a/.github/ISSUE_TEMPLATE/external_bug_report.md b/.github/ISSUE_TEMPLATE/external_bug_report.md deleted file mode 100644 index 1e82a3be55fc5..0000000000000 --- a/.github/ISSUE_TEMPLATE/external_bug_report.md +++ /dev/null @@ -1,9 +0,0 @@ - - -## Expected Behavior - - - -## Current Behavior - - From bd1aea9eadf967100676855d2d00553ae7f8a05f Mon Sep 17 00:00:00 2001 From: Geoffrey Huntley Date: Fri, 11 Nov 2022 04:21:43 +0000 Subject: [PATCH 2/4] implement new issue templates --- .github/ISSUE_TEMPLATE/bug-report.yml | 40 ++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 5 ++++ .github/ISSUE_TEMPLATE/enhancement.yml | 15 ++++++++++ .github/ISSUE_TEMPLATE/feedback.yml | 10 +++++++ 4 files changed, 70 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug-report.yml create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/enhancement.yml create mode 100644 .github/ISSUE_TEMPLATE/feedback.yml diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml new file mode 100644 index 0000000000000..55dd0335ed516 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -0,0 +1,40 @@ +name: Bug Report +description: Report a bug encountered while using Coder. +labels: bug +body: + - type: textarea + id: problem + attributes: + label: What happened? + description: | + Please provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner. + If this matter is security related, please disclose it privately via https://coder.com/security + validations: + required: true + + - type: textarea + id: expected + attributes: + label: What did you expect to happen? + validations: + required: true + + - type: textarea + id: repro + attributes: + label: How can we reproduce it (as minimally and precisely as possible)? + + - type: textarea + id: additional + attributes: + label: Anything else we need to know? + + - type: textarea + id: coderVersion + attributes: + label: Coder version + value: | + ```console + $ coder version + # paste output here + ``` diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000000000..f03e2af366e89 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,5 @@ +blank_issues_enabled: true +contact_links: + - name: Contact Sales + url: https://coder.com/demo + about: Request a demo of Coder Enterprise. diff --git a/.github/ISSUE_TEMPLATE/enhancement.yml b/.github/ISSUE_TEMPLATE/enhancement.yml new file mode 100644 index 0000000000000..e3c1fdb8463d8 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/enhancement.yml @@ -0,0 +1,15 @@ +name: Enhancement +description: Provide supporting details to request development of a feature. +labels: feature +body: + - type: textarea + id: feature + attributes: + label: What would you like to be added? + validations: + required: true + + - type: textarea + id: rationale + attributes: + label: Why is this needed? diff --git a/.github/ISSUE_TEMPLATE/feedback.yml b/.github/ISSUE_TEMPLATE/feedback.yml new file mode 100644 index 0000000000000..741e26e6cdb09 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feedback.yml @@ -0,0 +1,10 @@ +name: Feedback +description: Share your experience with us. +labels: feedback +body: + - type: textarea + id: feature + attributes: + label: What would you like share? + validations: + required: true From 405a78b48f5d343bf63d50e2022e812125429296 Mon Sep 17 00:00:00 2001 From: Geoffrey Huntley Date: Fri, 11 Nov 2022 14:27:56 +1000 Subject: [PATCH 3/4] Update enhancement.yml --- .github/ISSUE_TEMPLATE/enhancement.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/enhancement.yml b/.github/ISSUE_TEMPLATE/enhancement.yml index e3c1fdb8463d8..26e4adc665eba 100644 --- a/.github/ISSUE_TEMPLATE/enhancement.yml +++ b/.github/ISSUE_TEMPLATE/enhancement.yml @@ -1,6 +1,6 @@ name: Enhancement description: Provide supporting details to request development of a feature. -labels: feature +labels: enhancement body: - type: textarea id: feature From 7f9a1dc328e7d46bcd0b17fc83b6ce2068e721b3 Mon Sep 17 00:00:00 2001 From: Geoffrey Huntley Date: Sat, 12 Nov 2022 09:31:17 +1000 Subject: [PATCH 4/4] i agree --- .github/ISSUE_TEMPLATE/bug-report.yml | 38 +++++++++++++-------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index 55dd0335ed516..3221c99c9f60d 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -19,22 +19,22 @@ body: validations: required: true - - type: textarea - id: repro - attributes: - label: How can we reproduce it (as minimally and precisely as possible)? - - - type: textarea - id: additional - attributes: - label: Anything else we need to know? - - - type: textarea - id: coderVersion - attributes: - label: Coder version - value: | - ```console - $ coder version - # paste output here - ``` +# - type: textarea +# id: repro +# attributes: +# label: How can we reproduce it (as minimally and precisely as possible)? +# +# - type: textarea +# id: additional +# attributes: +# label: Anything else we need to know? +# +# - type: textarea +# id: coderVersion +# attributes: +# label: Coder version +# value: | +# ```console +# $ coder version +# # paste output here +# ```