bug-report.yml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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: release
  24. attributes:
  25. label: OpenWrt release
  26. description: |
  27. The OpenWrt release or commit hash where this bug occurs (use command below).
  28. ```. /etc/openwrt_release && echo $DISTRIB_RELEASE```
  29. validations:
  30. required: true
  31. - type: input
  32. id: target
  33. attributes:
  34. label: OpenWrt target/subtarget
  35. description: |
  36. The OpenWrt target and subtarget where this bug is observed (use command below).
  37. ```. /etc/openwrt_release && echo $DISTRIB_TARGET```
  38. validations:
  39. required: true
  40. - type: input
  41. id: device
  42. attributes:
  43. label: Device
  44. description: |
  45. The device exhibiting this bug (if unsure, use command below).
  46. ```cat /tmp/sysinfo/model```
  47. validations:
  48. required: true
  49. - type: dropdown
  50. id: image_kind
  51. attributes:
  52. label: Image kind
  53. options:
  54. - Official downloaded image
  55. - Self-built image
  56. validations:
  57. required: true
  58. - type: textarea
  59. id: reproduce
  60. attributes:
  61. label: Steps to reproduce
  62. description: Steps to reproduce the reported behaviour.
  63. - type: textarea
  64. id: behaviour
  65. attributes:
  66. label: Actual behaviour
  67. description: A clear and concise description of what actually happens.
  68. - type: textarea
  69. id: expected
  70. attributes:
  71. label: Expected behaviour
  72. description: A clear and concise description of what you expected to happen.
  73. - type: textarea
  74. id: additional
  75. attributes:
  76. label: Additional info
  77. description: Add any additional info you think might be helfpul.
  78. - type: textarea
  79. id: diffconfig
  80. attributes:
  81. label: Diffconfig
  82. description: |
  83. In case of a self-built image, please attach diffconfig.
  84. ```./scripts/diffconfig.sh```
  85. render: text
  86. - type: checkboxes
  87. id: terms
  88. attributes:
  89. label: Terms
  90. description: By submitting this issue, you agree to the terms below.
  91. options:
  92. - label: I am reporting an issue for OpenWrt, not an unsupported fork.
  93. required: true