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