Update '.gitea/issue_template/bug.yml'
[akkoma] / .gitea / issue_template / bug.yml
1 name: "Bug report"
2 about: "Something isn't working as expected"
3 title: "[bug] "
4 labels:
5 - bug
6 body:
7 - type: markdown
8 attributes:
9 value: |
10 Thanks for taking the time to file this bug report! Please try to be as specific and detailed as you can, so we can track down the issue and fix it as soon as possible.
11
12 # General information
13 - type: dropdown
14 id: installation
15 attributes:
16 label: "Your setup"
17 description: "What sort of installation are you using?"
18 options:
19 - "OTP"
20 - "From source"
21 - "Docker"
22 validations:
23 required: true
24 - type: input
25 id: setup-details
26 attributes:
27 label: "Extra details"
28 description: "If installing from source or docker, please specify your distro or docker setup."
29 placeholder: "e.g. Alpine Linux edge"
30 - type: input
31 id: version
32 attributes:
33 label: "Version"
34 description: "Which version of Akkoma are you running? If running develop, specify the commit hash."
35 placeholder: "e.g. 2022.11, 4e4bd248"
36 - type: input
37 id: postgres
38 attributes:
39 label: "PostgreSQL version"
40 placeholder: "14"
41 validations:
42 required: true
43 - type: markdown
44 attributes:
45 value: "# The issue"
46 - type: textarea
47 id: attempt
48 attributes:
49 label: "What were you trying to do?"
50 validations:
51 required: true
52 - type: textarea
53 id: expectation
54 attributes:
55 label: "What did you expect to happen?"
56 validations:
57 required: true
58 - type: textarea
59 id: reality
60 attributes:
61 label: "What actually happened?"
62 validations:
63 required: true
64 - type: textarea
65 id: logs
66 attributes:
67 label: "Logs"
68 description: "Please copy and paste any relevant log output, if applicable."
69 render: shell
70 - type: dropdown
71 id: severity
72 attributes:
73 label: "Severity"
74 description: "Does this issue prevent you from using the software as normal?"
75 options:
76 - "I cannot use the software"
77 - "I cannot use it as easily as I'd like"
78 - "I can manage"
79 validations:
80 required: true
81 - type: checkboxes
82 id: searched
83 attributes:
84 label: "Have you searched for this issue?"
85 description: "Please double-check that your issue is not already being tracked on [the forums](https://meta.akkoma.dev) or [the issue tracker](https://akkoma.dev/AkkomaGang/akkoma/issues)."
86 options:
87 - label: "I have double-checked and have not found this issue mentioned anywhere."