bug_report.yaml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. ---
  2. name: 🐛 Bug Report
  3. description: Report a reproducible bug in the current release of NetBox
  4. labels: ["type: bug"]
  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: input
  14. attributes:
  15. label: NetBox version
  16. description: What version of NetBox are you currently running?
  17. placeholder: v3.5.9
  18. validations:
  19. required: true
  20. - type: dropdown
  21. attributes:
  22. label: Python version
  23. description: What version of Python are you currently running?
  24. options:
  25. - "3.8"
  26. - "3.9"
  27. - "3.10"
  28. - "3.11"
  29. validations:
  30. required: true
  31. - type: textarea
  32. attributes:
  33. label: Steps to Reproduce
  34. description: >
  35. Describe in detail the exact steps that someone else can take to
  36. reproduce this bug using the current stable release of NetBox. Begin with the
  37. creation of any necessary database objects and call out every operation being
  38. performed explicitly. If reporting a bug in the REST API, be sure to reconstruct
  39. the raw HTTP request(s) being made: Don't rely on a client library such as
  40. pynetbox. Additionally, **do not rely on the demo instance** for reproducing
  41. suspected bugs, as its data is prone to modification or deletion at any time.
  42. placeholder: |
  43. 1. Click on "create widget"
  44. 2. Set foo to 12 and bar to G
  45. 3. Click the "create" button
  46. validations:
  47. required: true
  48. - type: textarea
  49. attributes:
  50. label: Expected Behavior
  51. description: What did you expect to happen?
  52. placeholder: A new widget should have been created with the specified attributes
  53. validations:
  54. required: true
  55. - type: textarea
  56. attributes:
  57. label: Observed Behavior
  58. description: What happened instead?
  59. placeholder: A TypeError exception was raised
  60. validations:
  61. required: true