bug_report.yaml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. ---
  2. name: 🐛 Bug Report
  3. about: Report a reproducible bug in the current release of NetBox
  4. labels: ["type: bug"]
  5. issue_body: false
  6. body:
  7. - type: input
  8. attributes:
  9. label: NetBox version
  10. description: "What version of NetBox are you currently running?"
  11. placeholder: v2.10.4
  12. validations:
  13. required: true
  14. - type: dropdown
  15. attributes:
  16. label: Python version
  17. description: "What version of Python are you currently running?"
  18. options:
  19. - 3.6
  20. - 3.7
  21. - 3.8
  22. - 3.9
  23. validations:
  24. required: true
  25. - type: textarea
  26. attributes:
  27. label: Steps to Reproduce
  28. description: "Describe in detail the exact steps that someone else can take to
  29. reproduce this bug using the current stable release of NetBox. Begin with the
  30. creation of any necessary database objects and call out every operation being
  31. performed explicitly. If reporting a bug in the REST API, be sure to reconstruct
  32. the raw HTTP request(s) being made: Don't rely on a client library such as
  33. pynetbox."
  34. placeholder: |
  35. 1. Click on "create widget"
  36. 2. Set foo to 12 and bar to G
  37. 3. Click the "create" button
  38. value: |
  39. 1.
  40. 2.
  41. 3.
  42. validations:
  43. required: true
  44. - type: textarea
  45. attributes:
  46. label: Expected Behavior
  47. description: "What did you expect to happen?"
  48. placeholder: "A new widget should have been created with the specified attributes"
  49. - type: textarea
  50. attributes:
  51. label: Observed Behavior
  52. description: "What happened instead?"
  53. placeholder: "A TypeError exception was raised"