bug_report.yaml 2.2 KB

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