repo: add Gitea issue templates

This commit is contained in:
2024-06-24 19:39:28 -07:00
parent 714f5ebfc7
commit fd22dc6b92
3 changed files with 56 additions and 0 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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