github: add command for device
[openwrt/staging/stintel.git] / .github / ISSUE_TEMPLATE / bug-report.yml
1 name: Bug report
2 description: Create a bug report to help us improve
3 labels:
4 - bug
5 body:
6 - type: textarea
7 id: description
8 attributes:
9 label: Describe the bug
10 description: A clear and concise description of the bug.
11 validations:
12 required: true
13 - type: input
14 id: version
15 attributes:
16 label: OpenWrt version
17 description: |
18 The OpenWrt release or commit hash where this bug occurs (use command below).
19 ```. /etc/openwrt_release && echo $DISTRIB_REVISION```
20 validations:
21 required: true
22 - type: input
23 id: target
24 attributes:
25 label: OpenWrt target/subtarget
26 description: |
27 The OpenWrt target and subtarget where this bug is observed (use command below).
28 ```. /etc/openwrt_release && echo $DISTRIB_TARGET```
29 validations:
30 required: true
31 - type: input
32 id: device
33 attributes:
34 label: Device
35 description: |
36 The device exhibiting this bug (if unsure, use command below).
37 ```cat /tmp/sysinfo/model```
38 validations:
39 required: true
40 - type: dropdown
41 id: image_kind
42 attributes:
43 label: Image kind
44 options:
45 - Official downloaded image
46 - Self-built image
47 validations:
48 required: true
49 - type: textarea
50 id: reproduce
51 attributes:
52 label: Steps to reproduce
53 description: Steps to reproduce the reported behaviour.
54 - type: textarea
55 id: behaviour
56 attributes:
57 label: Actual behaviour
58 description: A clear and concise description of what actually happens.
59 - type: textarea
60 id: expected
61 attributes:
62 label: Expected behaviour
63 description: A clear and concise description of what you expected to happen.
64 - type: textarea
65 id: additional
66 attributes:
67 label: Additional info
68 description: Add any additional info you think might be helfpul.
69 - type: textarea
70 id: diffconfig
71 attributes:
72 label: Diffconfig
73 description: |
74 In case of a self-built image, please attach diffconfig.
75 ```./scripts/diffconfig.sh```
76 render: text
77 - type: checkboxes
78 id: terms
79 attributes:
80 label: Terms
81 description: By submitting this issue, you agree to the terms below.
82 options:
83 - label: I am reporting an issue for OpenWrt, not an unsupported fork.
84 required: true