From db97d5cd35a122e1566e2ef1996d9f334bcfe1f8 Mon Sep 17 00:00:00 2001 From: TjgL Date: Sat, 18 Jan 2025 17:24:04 +0100 Subject: [PATCH] Added template for issues and PR --- .gitea/issue_template/feature_template.yaml | 21 ++++++++ .gitea/issue_template/issue_template.yaml | 56 +++++++++++++++++++++ .gitea/pull_request_template.yaml | 11 ++++ 3 files changed, 88 insertions(+) create mode 100644 .gitea/issue_template/feature_template.yaml create mode 100644 .gitea/issue_template/issue_template.yaml create mode 100644 .gitea/pull_request_template.yaml diff --git a/.gitea/issue_template/feature_template.yaml b/.gitea/issue_template/feature_template.yaml new file mode 100644 index 0000000..6a191ee --- /dev/null +++ b/.gitea/issue_template/feature_template.yaml @@ -0,0 +1,21 @@ +name: Feature Request +about: Create a feature request. +labels: ["enhancement"] +body: + - type: markdown + attributes: + value: | + Before requesting any feature, be sure that it isn't a planned feature and that isn't written on this repository. + - type: textarea + id: request + attributes: + label: Feature Description + placeholder: | + I think it would be great if the project had... + validations: + required: true + - type: textarea + id: extra + attributes: + label: Additional Informations + description: Enter here any other information or media that can be helpful. \ No newline at end of file diff --git a/.gitea/issue_template/issue_template.yaml b/.gitea/issue_template/issue_template.yaml new file mode 100644 index 0000000..5a69b0f --- /dev/null +++ b/.gitea/issue_template/issue_template.yaml @@ -0,0 +1,56 @@ +name: Bug Report +about: File a bug report! +title: "1.0.0 - " +labels: ["bug", "help wanted"] +body: + - type: markdown + attributes: + value: | + Before reporting any issue, be sure that it isn't already reported. + - type: textarea + id: description + attributes: + label: Description + description: A Clear and concise description of what the bug is. + required: true + - type: textarea + id: expected + attributes: + label: Expected Behaviour + description: What should be the expected behavior. + validations: + required: true + - type: textarea + id: repro + attributes: + label: Repro Steps + description: Steps to reproduce the behavior. It should be a numbered list where each number is a newline (1. [...] NEWLINE 2. [...] NEWLINE 3. [...]) + - type: input + id: map + attributes: + label: Map + description: The map where the bug occured. Leave empty if reproducible anywhere. + value: Any + - type: input + id: rate + attributes: + label: Reproduction Rate + description: The reproduction rate of the bug. On x tries how many times the bug was reproduced as a percentage. + value: 100% + - type: dropdown + id: severity + attributes: + label: Severity + description: How severe is the issue? + options: + - Low + - Minor + - Major + - Critical + validations: + required: true + - type: textarea + id: anything + attributes: + label: Additional informations + description: Enter here any other information or media that can be helpful. \ No newline at end of file diff --git a/.gitea/pull_request_template.yaml b/.gitea/pull_request_template.yaml new file mode 100644 index 0000000..31c2764 --- /dev/null +++ b/.gitea/pull_request_template.yaml @@ -0,0 +1,11 @@ +name: New Pull Request +about: Create a new pull request. +title: "" +body: + - type: markdown + attributes: + value: | + Please check the following: + 1. Make sure you are targeting the `main` branch. + 2. Describe what your pull request does and which issue you're targeting (if any). + \ No newline at end of file