diff --git a/.gitea/ISSUE_TEMPLATE/bug.yaml b/.gitea/ISSUE_TEMPLATE/bug.yaml new file mode 100644 index 0000000..5d2ac42 --- /dev/null +++ b/.gitea/ISSUE_TEMPLATE/bug.yaml @@ -0,0 +1,34 @@ +name: Bug Report +about: File a bug report +title: "[BUG]: " +body: + - type: dropdown + id: version + attributes: + label: "Version or master (branch)" + options: + - master (branch) + - v1.0.0-beta + validations: + required: true + - type: textarea + id: version_hash + attributes: + label: "If running master (branch), what commit hash?" + placeholder: "$ git log --pretty=oneline -n 1" + render: shell + - type: textarea + id: version_output + attributes: + label: "Output of your client (host) `docker-finance version` command" + placeholder: "$ docker-finance version" + render: shell + validations: + required: true + - type: textarea + id: description + attributes: + label: "Description of bug" + placeholder: "What commands did you use? What's your expected output or experience?" + validations: + required: true diff --git a/.gitea/ISSUE_TEMPLATE/question.yaml b/.gitea/ISSUE_TEMPLATE/question.yaml new file mode 100644 index 0000000..5ac7a03 --- /dev/null +++ b/.gitea/ISSUE_TEMPLATE/question.yaml @@ -0,0 +1,11 @@ +name: Question or Suggestion +about: File a code question or suggestion +title: "[QUESTION]: " +body: + - type: textarea + id: description + attributes: + label: "Description of question or suggestion" + placeholder: "What would you like to say?" + validations: + required: true diff --git a/.gitea/ISSUE_TEMPLATE/request.yaml b/.gitea/ISSUE_TEMPLATE/request.yaml new file mode 100644 index 0000000..f7eac94 --- /dev/null +++ b/.gitea/ISSUE_TEMPLATE/request.yaml @@ -0,0 +1,11 @@ +name: Feature Request or Enhancement +about: File a feature request or enhancement +title: "[REQUEST]: " +body: + - type: textarea + id: description + attributes: + label: "Description of feature request or enhancement" + placeholder: "What would you like to see change and why?" + validations: + required: true