02-bug_report.yaml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. ---
  2. name: 🐛 Bug Report
  3. description: Report a reproducible bug in the current release of NetBox
  4. labels: ["type: bug", "status: needs triage"]
  5. body:
  6. - type: markdown
  7. attributes:
  8. value: >
  9. **NOTE:** This form is only for reporting _reproducible bugs_ in a current NetBox
  10. installation. If you're having trouble with installation or just looking for
  11. assistance with using NetBox, please visit our
  12. [discussion forum](https://github.com/netbox-community/netbox/discussions) instead.
  13. - type: dropdown
  14. attributes:
  15. label: Deployment Type
  16. description: >
  17. How are you running NetBox? (For issues with the Docker image, please go to the
  18. [netbox-docker](https://github.com/netbox-community/netbox-docker) repo.)
  19. options:
  20. - NetBox Cloud
  21. - NetBox Enterprise
  22. - Self-hosted
  23. validations:
  24. required: true
  25. - type: dropdown
  26. attributes:
  27. label: Triage priority
  28. description: >
  29. Issue triage may be prioritized in some cases. Select whichever of the following
  30. conditions applies, if any.
  31. options:
  32. - I volunteer to perform this work (if approved)
  33. - I'm a NetBox Labs customer
  34. - N/A
  35. default: 2
  36. validations:
  37. required: true
  38. - type: input
  39. attributes:
  40. label: NetBox Version
  41. description: What version of NetBox are you currently running?
  42. placeholder: v4.1.7
  43. validations:
  44. required: true
  45. - type: dropdown
  46. attributes:
  47. label: Python Version
  48. description: What version of Python are you currently running?
  49. options:
  50. - "3.10"
  51. - "3.11"
  52. - "3.12"
  53. validations:
  54. required: true
  55. - type: textarea
  56. attributes:
  57. label: Steps to Reproduce
  58. description: >
  59. Describe in detail the exact steps that someone else can take to
  60. reproduce this bug using the current stable release of NetBox. Begin with the
  61. creation of any necessary database objects and call out every operation being
  62. performed explicitly. If reporting a bug in the REST API, be sure to reconstruct
  63. the raw HTTP request(s) being made: Don't rely on a client library such as
  64. pynetbox. Additionally, **do not rely on the demo instance** for reproducing
  65. suspected bugs, as its data is prone to modification or deletion at any time.
  66. placeholder: |
  67. 1. Click on "create widget"
  68. 2. Set foo to 12 and bar to G
  69. 3. Click the "create" button
  70. validations:
  71. required: true
  72. - type: textarea
  73. attributes:
  74. label: Expected Behavior
  75. description: What did you expect to happen?
  76. placeholder: A new widget should have been created with the specified attributes
  77. validations:
  78. required: true
  79. - type: textarea
  80. attributes:
  81. label: Observed Behavior
  82. description: What happened instead?
  83. placeholder: A TypeError exception was raised
  84. validations:
  85. required: true