From 182926e57521cffc07ce87e4f812ff7d716ce777 Mon Sep 17 00:00:00 2001 From: Oliver Schraml Date: Mon, 5 Jul 2021 13:25:18 +0200 Subject: [PATCH] issue_template: init --- .gitea/issue_template/bug.md | 37 ++++++++++++++++++++++++++++ .gitea/issue_template/enhancement.md | 15 +++++++++++ .gitea/issue_template/help_needed.md | 37 ++++++++++++++++++++++++++++ 3 files changed, 89 insertions(+) create mode 100644 .gitea/issue_template/bug.md create mode 100644 .gitea/issue_template/enhancement.md create mode 100644 .gitea/issue_template/help_needed.md diff --git a/.gitea/issue_template/bug.md b/.gitea/issue_template/bug.md new file mode 100644 index 0000000..9be3472 --- /dev/null +++ b/.gitea/issue_template/bug.md @@ -0,0 +1,37 @@ +--- + +name: "Bug Report" +about: "You found a bug? Awesome, please let us know" +title: "" +labels: +- bug + +--- + +# System information +- bash version: +- git version: +- OS version: + + +# What have you found? + + +# What error messages do you get? +``` +Error: git does not like me ;) +``` + +### Trace logs +``` + +``` + + +# What have you executed? +```bash +$ git merge rebase -i pull switch to_not_existing_branch -D master +``` + + +# Further information diff --git a/.gitea/issue_template/enhancement.md b/.gitea/issue_template/enhancement.md new file mode 100644 index 0000000..dd08cd5 --- /dev/null +++ b/.gitea/issue_template/enhancement.md @@ -0,0 +1,15 @@ +--- + +name: "Enhancement" +about: "Requests for additional function(s)" +title: "" +labels: +- enhancement + +--- + +# What should the new funcation do? + +# Example of the enhancement + +# Further information diff --git a/.gitea/issue_template/help_needed.md b/.gitea/issue_template/help_needed.md new file mode 100644 index 0000000..4bc9c95 --- /dev/null +++ b/.gitea/issue_template/help_needed.md @@ -0,0 +1,37 @@ +--- + +name: ":help!" +about: "E478: Don't panic! Calm down and tell us how we can help you" +title: "" +labels: +- "help needed" + +--- + +# System information +- bash version: +- git version: +- OS version: + + +# What would you like to do? + + +# Do you get an error message? +``` +Error: git does not like me ;) +``` + +### Trace logs +``` + +``` + + +# What have you executed? +```bash +$ git merge rebase -i pull switch to_not_existing_branch -D master +``` + + +# Further information