From 3091c840d04fd6528a2f26d7c84a37ac1cb8dc29 Mon Sep 17 00:00:00 2001 From: M Atif Ali Date: Thu, 30 Jan 2025 14:17:45 +0500 Subject: [PATCH 1/7] Create config.yaml --- .github/ISSUE_TEMPLATE/config.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/config.yaml diff --git a/.github/ISSUE_TEMPLATE/config.yaml b/.github/ISSUE_TEMPLATE/config.yaml new file mode 100644 index 0000000000000..e05fd7d4fea8c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yaml @@ -0,0 +1,8 @@ +contact_links: + - name: Features, Bug Reports, Questions? + url: https://github.com/coder/coder/discussions/new/choose + about: Our preferred starting point if you have any questions or suggestions about configuration, features or unexpected behavior. + - name: Coder Discord Community + url: https://discord.gg/coder + about: Connect with Coder commmunity, share feedback, and get interactive support. + From c9a8e4c35efd2ddc765b88ca5ac5d544548e447e Mon Sep 17 00:00:00 2001 From: M Atif Ali Date: Thu, 30 Jan 2025 15:30:09 +0500 Subject: [PATCH 2/7] Create 1-bug.yaml --- .github/ISSUE_TEMPLATE/1-bug.yaml | 79 +++++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/1-bug.yaml diff --git a/.github/ISSUE_TEMPLATE/1-bug.yaml b/.github/ISSUE_TEMPLATE/1-bug.yaml new file mode 100644 index 0000000000000..3e503587da7b9 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/1-bug.yaml @@ -0,0 +1,79 @@ +name: "🐞 Bug" +description: "File a bug report." +title: "" +labels: ["needs-triage"] +body: + - type: checkboxes + id: existing_issues + attributes: + label: "Is there an existing issue for this?" + description: "Please search to see if an issue already exists for the bug you encountered." + options: + - label: "I have searched the existing issues" + required: true + + - type: textarea + id: issue + attributes: + label: "Current Behavior" + description: "A concise description of what you're experiencing." + placeholder: "Tell us what you see!" + validations: + required: false + + - type: textarea + id: logs + attributes: + label: "Relevant Log Output" + description: "Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks." + render: shell + + - type: textarea + id: expected + attributes: + label: "Expected Behavior" + description: "A concise description of what you expected to happen." + validations: + required: false + + - type: textarea + id: steps_to_reproduce + attributes: + label: "Steps to Reproduce" + description: "Provide step-by-step instructions to reproduce the issue." + placeholder: | + 1. First step + 2. Second step + 3. Another step + 4. Issue occurs + validations: + required: true + + - type: textarea + id: environment + attributes: + label: "Environment" + description: | + Provide details about your environment: + - **Host OS**: (e.g., Ubuntu 24.04, Debian 12) + - **Coder Version**: (e.g., v2.18.4) + placeholder: | + Run `coder version` to get Coder version + value: | + - Host OS: + - Coder version: + render: markdown + validations: + required: false + + - type: dropdown + id: additional_info + attributes: + label: "Additional Context" + description: "Select any applicable options:" + multiple: true + options: + - "The issue occurs consistently" + - "The issue is new (previously worked fine)" + - "The issue happens on multiple deployments" + - "I have tested this on the latest version" From f1d23abdc06b8c956b139b22890d0927a2302582 Mon Sep 17 00:00:00 2001 From: M Atif Ali <atif@coder.com> Date: Thu, 30 Jan 2025 15:57:05 +0500 Subject: [PATCH 3/7] Update config.yaml --- .github/ISSUE_TEMPLATE/config.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/config.yaml b/.github/ISSUE_TEMPLATE/config.yaml index e05fd7d4fea8c..1138bb85ffbe5 100644 --- a/.github/ISSUE_TEMPLATE/config.yaml +++ b/.github/ISSUE_TEMPLATE/config.yaml @@ -1,8 +1,11 @@ contact_links: - - name: Features, Bug Reports, Questions? + - name: Questions, Suggestion or Feature requests? url: https://github.com/coder/coder/discussions/new/choose about: Our preferred starting point if you have any questions or suggestions about configuration, features or unexpected behavior. + - name: Coder Docs + url: https://coder.com/docs + about: Check our docs. - name: Coder Discord Community url: https://discord.gg/coder - about: Connect with Coder commmunity, share feedback, and get interactive support. + about: Get in touch with the FreeOrion developers and community for support. From 5ff49eb822539961aef02d9f72633009b55ad860 Mon Sep 17 00:00:00 2001 From: M Atif Ali <atif@coder.com> Date: Thu, 30 Jan 2025 16:34:47 +0500 Subject: [PATCH 4/7] Remove markdown render from bug template --- .github/ISSUE_TEMPLATE/1-bug.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/1-bug.yaml b/.github/ISSUE_TEMPLATE/1-bug.yaml index 3e503587da7b9..d6cb29730e962 100644 --- a/.github/ISSUE_TEMPLATE/1-bug.yaml +++ b/.github/ISSUE_TEMPLATE/1-bug.yaml @@ -62,7 +62,6 @@ body: value: | - Host OS: - Coder version: - render: markdown validations: required: false From 27a49a13db243420bda3ebcf0f1abefa374c899b Mon Sep 17 00:00:00 2001 From: M Atif Ali <atif@coder.com> Date: Thu, 30 Jan 2025 17:26:30 +0500 Subject: [PATCH 5/7] Fix typo in ISSUE_TEMPLATE config.yaml --- .github/ISSUE_TEMPLATE/config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/config.yaml b/.github/ISSUE_TEMPLATE/config.yaml index 1138bb85ffbe5..19966ab780ce1 100644 --- a/.github/ISSUE_TEMPLATE/config.yaml +++ b/.github/ISSUE_TEMPLATE/config.yaml @@ -7,5 +7,5 @@ contact_links: about: Check our docs. - name: Coder Discord Community url: https://discord.gg/coder - about: Get in touch with the FreeOrion developers and community for support. + about: Get in touch with the Coder developers and community for support. From f0c6e90e5b568e1f82e35ab8d529a81edabff043 Mon Sep 17 00:00:00 2001 From: M Atif Ali <atif@coder.com> Date: Thu, 30 Jan 2025 17:27:22 +0500 Subject: [PATCH 6/7] Remove trailing whitespace in config.yaml --- .github/ISSUE_TEMPLATE/config.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/config.yaml b/.github/ISSUE_TEMPLATE/config.yaml index 19966ab780ce1..e53e16ca522f1 100644 --- a/.github/ISSUE_TEMPLATE/config.yaml +++ b/.github/ISSUE_TEMPLATE/config.yaml @@ -8,4 +8,3 @@ contact_links: - name: Coder Discord Community url: https://discord.gg/coder about: Get in touch with the Coder developers and community for support. - From fae67661d16cd787966cfdbdc83ebca3bc4ec4fd Mon Sep 17 00:00:00 2001 From: M Atif Ali <me@matifali.dev> Date: Thu, 30 Jan 2025 23:38:56 +0500 Subject: [PATCH 7/7] Update config.yaml --- .github/ISSUE_TEMPLATE/config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/config.yaml b/.github/ISSUE_TEMPLATE/config.yaml index e53e16ca522f1..d38f9c823d51d 100644 --- a/.github/ISSUE_TEMPLATE/config.yaml +++ b/.github/ISSUE_TEMPLATE/config.yaml @@ -1,5 +1,5 @@ contact_links: - - name: Questions, Suggestion or Feature requests? + - name: Questions, suggestion or feature requests? url: https://github.com/coder/coder/discussions/new/choose about: Our preferred starting point if you have any questions or suggestions about configuration, features or unexpected behavior. - name: Coder Docs <!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'> <html xmlns='http://www.w3.org/1999/xhtml'> <head> <title>pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy