From 4644b4c62b8987ee9dcabe8cde77f10cc8fc3864 Mon Sep 17 00:00:00 2001 From: Flaminel Date: Tue, 31 Dec 2024 16:29:43 +0200 Subject: [PATCH] added issue templates --- .github/ISSUE_TEMPLATE/1-bug.yml | 60 ++++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/2-feature.yml | 19 +++++++++ .github/ISSUE_TEMPLATE/3-help.yml | 19 +++++++++ .github/ISSUE_TEMPLATE/config.yml | 1 + 4 files changed, 99 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/1-bug.yml create mode 100644 .github/ISSUE_TEMPLATE/2-feature.yml create mode 100644 .github/ISSUE_TEMPLATE/3-help.yml create mode 100644 .github/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/1-bug.yml b/.github/ISSUE_TEMPLATE/1-bug.yml new file mode 100644 index 0000000..3ccbd84 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/1-bug.yml @@ -0,0 +1,60 @@ +name: Bug report +description: File a bug report if something is not working right. +title: "[BUG]: " +labels: ["bug"] +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to improve cleanuperr! + - type: textarea + id: what-happened + attributes: + label: What is the behavior? + description: If applicable, mention what you expected to happen. + validations: + required: true + - type: input + id: version + attributes: + label: Version + description: What version of our software are you running? + placeholder: e.g. 1.3.0 or latest + validations: + required: true + - type: dropdown + id: os + attributes: + label: Which operating system do you use? + multiple: false + options: + - Windows + - Linux + - MacOS + validations: + required: true + - type: dropdown + id: deployment + attributes: + label: What type of deployment do you use? + multiple: false + options: + - Docker container + - Binary (executable) file + validations: + required: true + - type: textarea + id: logs + attributes: + label: Relevant log output + description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. + render: shell + - type: textarea + attributes: + label: Anything else? + description: | + Links? References? Anything that will give us more context about the issue you are encountering! + + Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in. + validations: + required: false diff --git a/.github/ISSUE_TEMPLATE/2-feature.yml b/.github/ISSUE_TEMPLATE/2-feature.yml new file mode 100644 index 0000000..a6332e2 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/2-feature.yml @@ -0,0 +1,19 @@ +name: Feature request +description: File a feature request. +title: "[FEATURE]: " +labels: ["enhancement"] +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to improve cleanuperr! + - type: textarea + id: description + attributes: + label: What would you like to see implemented next? + description: | + Links? References? Anything that will give us more context about your idea! + + Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in. + validations: + required: true \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/3-help.yml b/.github/ISSUE_TEMPLATE/3-help.yml new file mode 100644 index 0000000..ff20acd --- /dev/null +++ b/.github/ISSUE_TEMPLATE/3-help.yml @@ -0,0 +1,19 @@ +name: Feature request +description: Ask a question to receive help. +title: "[HELP]: " +labels: ["question"] +body: + - type: markdown + attributes: + value: | + If you are experiencing unexpected behavior, please consider submitting a bug report instead. + - type: textarea + id: description + attributes: + label: How can we help? + description: | + Links? References? Anything that will give us more context about your question! + + Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in. + 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..ec4bb38 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: false \ No newline at end of file