bug.yml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. name: 🐞 Bug Report
  2. description: Tell us about something that's not working the way we (probably) intend.
  3. body:
  4. - type: dropdown
  5. id: environment
  6. attributes:
  7. label: Environment
  8. description: Where are you using our software?
  9. options:
  10. - SaaS (https://sentry.io/)
  11. - self-hosted (https://develop.sentry.dev/self-hosted/)
  12. validations:
  13. required: true
  14. - type: input
  15. id: version
  16. attributes:
  17. label: Version
  18. placeholder: 21.7.0 ← should look like this (check the footer)
  19. description: If on self-hosted, what version are you running?
  20. validations:
  21. required: false
  22. - type: input
  23. id: link
  24. attributes:
  25. label: Link
  26. placeholder: https://sentry.io/organizations/{ORG_SLUG}/...
  27. description: If on SaaS, where did you find the issue? **Note:** This will divulge your org slug publicly.
  28. validations:
  29. required: false
  30. - type: input
  31. id: DSN
  32. attributes:
  33. label: DSN
  34. placeholder: https://{tag}@o{ORG_ID}.ingest.sentry.io/{PROJECT_ID}
  35. description: If on SaaS, what is your DSN? This is an easy way to give us your org ID (non-PII).
  36. validations:
  37. required: false
  38. - type: textarea
  39. id: repro
  40. attributes:
  41. label: Steps to Reproduce
  42. description: How can we see what you're seeing? Specific is terrific.
  43. placeholder: |-
  44. 1. foo
  45. 2. bar
  46. 3. baz
  47. validations:
  48. required: true
  49. - type: textarea
  50. id: expected
  51. attributes:
  52. label: Expected Result
  53. validations:
  54. required: true
  55. - type: textarea
  56. id: actual
  57. attributes:
  58. label: Actual Result
  59. description: Logs? Screenshots? Yes, please.
  60. validations:
  61. required: true
  62. - type: markdown
  63. attributes:
  64. value: |-
  65. ## Thanks 🙏
  66. Check our [triage docs](https://open.sentry.io/triage/) for what to expect next.
  67. validations:
  68. required: false