bug_template.yaml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. name: "Bug or question/support"
  2. about: "For filing a bug or getting support"
  3. body:
  4. - type: textarea
  5. id: problem
  6. attributes:
  7. label: What I'm trying to do and why
  8. validations:
  9. required: true
  10. - type: textarea
  11. id: repro_steps
  12. attributes:
  13. label: Steps to reproduce
  14. description: Include (sanitized) borgmatic configuration files if applicable.
  15. validations:
  16. required: false
  17. - type: textarea
  18. id: actual_behavior
  19. attributes:
  20. label: Actual behavior
  21. description: Include (sanitized) `--verbosity 2` output if applicable.
  22. validations:
  23. required: false
  24. - type: textarea
  25. id: expected_behavior
  26. attributes:
  27. label: Expected behavior
  28. validations:
  29. required: false
  30. - type: textarea
  31. id: notes
  32. attributes:
  33. label: Other notes / implementation ideas
  34. validations:
  35. required: false
  36. - type: input
  37. id: borgmatic_version
  38. attributes:
  39. label: borgmatic version
  40. description: Use `sudo borgmatic --version` or `sudo pip show borgmatic | grep ^Version`
  41. validations:
  42. required: false
  43. - type: input
  44. id: borgmatic_install_method
  45. attributes:
  46. label: borgmatic installation method
  47. description: e.g., pip install, Debian package, container, etc.
  48. validations:
  49. required: false
  50. - type: input
  51. id: borg_version
  52. attributes:
  53. label: Borg version
  54. description: Use `sudo borg --version`
  55. validations:
  56. required: false
  57. - type: input
  58. id: python_version
  59. attributes:
  60. label: Python version
  61. description: Use `python3 --version`
  62. validations:
  63. required: false
  64. - type: input
  65. id: database_version
  66. attributes:
  67. label: Database version (if applicable)
  68. description: Use `psql --version` / `mysql --version` / `mongodump --version` / `sqlite3 --version`
  69. validations:
  70. required: false
  71. - type: input
  72. id: operating_system_version
  73. attributes:
  74. label: Operating system and version
  75. description: On Linux, use `cat /etc/os-release`
  76. validations:
  77. required: false