bug_report.yaml 2.6 KB

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