From 9f65c104770de708c23ef8ebc44d75b8e7054ffb Mon Sep 17 00:00:00 2001 From: OCram85 Date: Wed, 25 Oct 2023 16:50:53 +0200 Subject: [PATCH] Add .gitea/ISSUE_TEMPLATE/Bug.yml --- .gitea/ISSUE_TEMPLATE/Bug.yml | 47 +++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .gitea/ISSUE_TEMPLATE/Bug.yml diff --git a/.gitea/ISSUE_TEMPLATE/Bug.yml b/.gitea/ISSUE_TEMPLATE/Bug.yml new file mode 100644 index 0000000..44a98e7 --- /dev/null +++ b/.gitea/ISSUE_TEMPLATE/Bug.yml @@ -0,0 +1,47 @@ +name: Bug Report +about: This template is used to report bugs! +title: "🐞: " +labels: + - bug +body: + - type: markdown + attributes: + value: | + > **Note**: This bug report is only for content provided in this repository! + > + > - Make sure you're able to reproduce the error in the lastest version of this package. + > - Search of already existing issues. + > - Refer to the known issues and FAQ section. + - type: textarea + id: reproduce + attributes: + label: 💣 Steps to reproduce + description: Describe ho to reproduce the error. + value: | + ```bash + + ``` + validations: + required: true + - type: textarea + id: expected + attributes: + label: 🚀 Expected behaviour + description: Describe what should happen. + value: | + ```bash + + ``` + validations: + required: true + - type: textarea + id: actual + attributes: + label: 💥 Actual behaviour + description: Describe actually happens. + value: | + ```bash + + ``` + validations: + required: true \ No newline at end of file