From bad8733929d7a34c19cfdca2019996590a2baefe Mon Sep 17 00:00:00 2001 From: Yannik <80621863+vaporvee@users.noreply.github.com> Date: Fri, 12 May 2023 14:50:13 +0200 Subject: [PATCH] Create BUG.yml --- .github/ISSUE_TEMPLATE/BUG.yml | 64 ++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/BUG.yml diff --git a/.github/ISSUE_TEMPLATE/BUG.yml b/.github/ISSUE_TEMPLATE/BUG.yml new file mode 100644 index 0000000..cd90334 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/BUG.yml @@ -0,0 +1,64 @@ +name: Bug Report +description: File a bug report +title: "[Bug/Crash]: " +labels: ["bug"] +assignees: + - vaporvee +body: + - type: markdown + attributes: + value: Thanks for taking the time to fill out this bug/crash report! + - type: textarea + id: what-happened + attributes: + label: What happened? + description: Also tell us, what did you expect to happen? + placeholder: Tell us what you see! + value: "A bug happened!" + validations: + required: true + - type: dropdown + id: version + attributes: + label: Version + description: What version of our software are you running? + options: + - 1.2 + - 1.1 + - 1.0 + - Custom build + validations: + required: true + - type: input + id: gd-version + attributes: + label: Godot Version + description: This addon is ONLY for 4.0 and above! + placeholder: e.g. 4.0.2-stable + validations: + required: true + - type: textarea + id: gdscript + attributes: + label: GDScript + description: A place for any GDScript to be formatted + placeholder: Put in your GDScript code here and make comments with `#` to tell where wich file ends + render: gdscript + validations: + required: true + - type: textarea + id: additional + attributes: + label: Additional information + description: If you have anything else tell me here + placeholder: Anything else. + validations: + required: false + - type: checkboxes + id: reinstalling + attributes: + label: Checks + description: Common mistakes (Adding more in the future sorry btw) + options: + - label: I tried reinstalling the addon in a new project. + required: true