From 58a876056d36caa1d504303ad2540e07d8acb18c Mon Sep 17 00:00:00 2001 From: swordcube <49110074+swordcube@users.noreply.github.com> Date: Sun, 16 Apr 2023 22:53:39 -0500 Subject: [PATCH] github issue shit?!?!? --- .github/ISSUE_TEMPLATE/bug.yaml | 25 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/help.yaml | 30 ++++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/question.yaml | 9 +++++++++ 3 files changed, 64 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug.yaml create mode 100644 .github/ISSUE_TEMPLATE/help.yaml create mode 100644 .github/ISSUE_TEMPLATE/question.yaml diff --git a/.github/ISSUE_TEMPLATE/bug.yaml b/.github/ISSUE_TEMPLATE/bug.yaml new file mode 100644 index 00000000..9557758d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug.yaml @@ -0,0 +1,25 @@ +name: Bug Report +description: File a bug report +labels: ["bug"] + +body: +- type: textarea + id: bug_details + attributes: + label: Cause of the bug + description: Tell us in detail what exactly causes this bug + placeholder: "Example: this bug happens when opening **X**" + validations: + required: true + +- type: dropdown + id: bug_platform + attributes: + label: Your Platform + description: In which platform did you face this bug? + multiple: false + options: + - "Windows" + - "MacOS" + - "Linux (Ubuntu, Fedora, Arch)" + - "HTML5" diff --git a/.github/ISSUE_TEMPLATE/help.yaml b/.github/ISSUE_TEMPLATE/help.yaml new file mode 100644 index 00000000..8c7942e5 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/help.yaml @@ -0,0 +1,30 @@ +name: Help me! +description: If you need help using the engine. +labels: [help wanted] +body: + - type: textarea + id: description + attributes: + label: "Describe your problem here." + validations: + required: true + + - type: dropdown + id: btarget + attributes: + label: "What is your build target?" + options: + - "Windows" + - "Linux" + - "Mac" + - "HTML5" + validations: + required: true + + - type: input + id: buildsummary + attributes: + label: "Did you edit anything in this build? If so, mention or summarize your changes." + placeholder: "Yes, I edited SettingsAPI.gd and attempted to add a new setting/control." + validations: + required: false diff --git a/.github/ISSUE_TEMPLATE/question.yaml b/.github/ISSUE_TEMPLATE/question.yaml new file mode 100644 index 00000000..8e04906b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/question.yaml @@ -0,0 +1,9 @@ +name: Question +description: Ask about something here. +labels: [question] +body: + - type: textarea + attributes: + label: What is your question? + validations: + required: true \ No newline at end of file