From fb3dba46e6471e4abfac47ae693b592122abd038 Mon Sep 17 00:00:00 2001 From: Cromatin Date: Fri, 18 Oct 2024 20:49:09 +0200 Subject: [PATCH] Added issue template --- .github/ISSUE_TEMPLATE/config.yml | 4 ++ .github/ISSUE_TEMPLATE/feature_request.yml | 14 ++++++ .github/ISSUE_TEMPLATE/issue_report.yml | 53 ++++++++++++++++++++++ 3 files changed, 71 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yml create mode 100644 .github/ISSUE_TEMPLATE/issue_report.yml diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..a046994 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,4 @@ +blank_issues_enabled: false + - name: General Issue + url: https://github.com/official-Cromatin/Commander/issues/new?assignees=&labels=&template=general_issue.yml + about: Nothing is matching your needs? Create an Normal issue \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 0000000..d456e43 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,14 @@ +name: Issue Report +description: You found a bug or something does not work as it should, report it here +labels: ["feature-request"] +body: + - type: markdown + attributes: + value: "*Before you create an issue, please look first if an issue already exists that your concern is treated*" + + - type: textarea + attributes: + label: Issue description + description: A detailed description of the feature you request. The more descriptive you are, the more likely the implementation will satisfy you + validations: + required: true diff --git a/.github/ISSUE_TEMPLATE/issue_report.yml b/.github/ISSUE_TEMPLATE/issue_report.yml new file mode 100644 index 0000000..355c4a9 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/issue_report.yml @@ -0,0 +1,53 @@ +name: Issue Report +description: You found a bug or something does not work as it should, report it here +labels: ["bug"] +body: + - type: markdown + attributes: + value: "*Before you create an issue, please look first if an issue already exists that your concern is treated*" + + - type: textarea + attributes: + label: Issue description + description: A clear description of the issue you ran into + validations: + required: true + + - type: textarea + attributes: + label: Steps to reproduce + description: If there are specific steps that need to be taken to reproduce the issue, list them here. + placeholder: | + 1. Start the Bot + 2. Execute some command + 3. See some result (or not) + validations: + required: true + + - type: dropdown + id: bot-version + attributes: + label: Bot release version + description: What version of the Bot are you using? + options: + - Pre 1.0 + validations: + required: true + + - type: dropdown + id: discordpy-version + attributes: + label: Discord.py version + description: What version of the discord.py libary are you using? + options: + - 2.4.0 + + - type: textarea + attributes: + label: Other relevant Information + description: Do you have any other information that could help us to trace the error back? + + - type: input + attributes: + label: "If you have a log, you can enter the link here" + description: "Put the [gist](https://gist.github.com/) / [pastebin](https://pastebin.com/) / etc link here." \ No newline at end of file