2.server_bug_report.yml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. name: Bug Report (server / API)
  2. description: |
  3. If something is not working as expected, but is not from using the web interface.
  4. labels: [bug, 'status/to triage']
  5. body:
  6. - type: markdown
  7. attributes:
  8. value: |
  9. Make sure that you are submitting a new bug that was not previously reported or already fixed.
  10. Please use a concise and distinct title for the issue.
  11. - type: textarea
  12. attributes:
  13. label: Steps to reproduce the problem
  14. description: What were you trying to do?
  15. value: |
  16. 1.
  17. 2.
  18. 3.
  19. ...
  20. validations:
  21. required: true
  22. - type: input
  23. attributes:
  24. label: Expected behaviour
  25. description: What should have happened?
  26. validations:
  27. required: true
  28. - type: input
  29. attributes:
  30. label: Actual behaviour
  31. description: What happened?
  32. validations:
  33. required: true
  34. - type: textarea
  35. attributes:
  36. label: Detailed description
  37. validations:
  38. required: false
  39. - type: input
  40. attributes:
  41. label: Mastodon instance
  42. description: The address of the Mastodon instance where you experienced the issue
  43. placeholder: mastodon.social
  44. validations:
  45. required: false
  46. - type: input
  47. attributes:
  48. label: Mastodon version
  49. description: |
  50. This is displayed at the bottom of the About page, eg. `v4.1.2+nightly-20230627`
  51. placeholder: v4.1.2
  52. validations:
  53. required: false
  54. - type: textarea
  55. attributes:
  56. label: Technical details
  57. description: |
  58. Any additional technical details you may have, like logs or error traces
  59. value: |
  60. If this is happening on your own Mastodon server, please fill out those:
  61. - Ruby version: (from `ruby --version`, eg. v3.1.2)
  62. - Node.js version: (from `node --version`, eg. v18.16.0)
  63. validations:
  64. required: false