From 9ec1b3542f4999d6c788c93b3c28baa6528275ba Mon Sep 17 00:00:00 2001 From: Patrick Date: Fri, 4 Nov 2022 21:16:49 +0100 Subject: [PATCH] Add bug report template --- .github/ISSUE_TEMPLATE/bug_report.yml | 45 +++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 1 + 2 files changed, 46 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml create mode 100644 .github/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 0000000..1df0852 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,45 @@ +name: Bug report +description: Report a bug in GDExtension Summator +body: + +- type: markdown + attributes: + value: | + - Write a descriptive issue title above. + - Search [open](https://github.com/paddy-exe/GDExtensionSummator/issues) and [closed](https://github.com/paddy-exe/GDExtensionSummator/issues?q=is%3Aissue+is%3Aclosed) issues to ensure it has not already been reported. + +- type: input + attributes: + label: Godot version + description: > + Specify the Git commit hash of your Godot build. + placeholder: v4.0.beta4.official [e6751549c] + validations: + required: true + +- type: input + attributes: + label: godot-cpp version + description: > + Specify the Git commit hash of the godot-cpp submodule in your project. You can run `git status` inside the folder to check it. + placeholder: v4.0.beta4.official [e6751549c] + validations: + required: true + +- type: input + attributes: + label: System information + description: | + Specify the OS version. + placeholder: Windows 10 + validations: + required: true + +- type: textarea + attributes: + label: Issue description + description: | + Describe your issue briefly. What doesn't work, and how do you expect it to work instead? + You can include images or videos with drag and drop, and format code blocks or logs with ``` tags. + validations: + required: true \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..0086358 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: true