bug-report.yml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. name: Bug report
  2. description: Report a reproducible bug in oh-my-opencode-slim.
  3. title: '[Bug]: '
  4. labels:
  5. - bug
  6. body:
  7. - type: markdown
  8. attributes:
  9. value: |
  10. Thanks for filing a bug. Keep it short, but include enough detail for us to reproduce it.
  11. Before filing, please try clearing OpenCode's cache and restarting OpenCode:
  12. ```sh
  13. rm -rf ~/.cache/opencode
  14. ```
  15. If the bug still happens after that, continue with this report.
  16. - type: textarea
  17. id: summary
  18. attributes:
  19. label: What happened, and what did you expect?
  20. description: Describe the bug and the expected behavior.
  21. placeholder: |
  22. What happened: The plugin crashes when I run...
  23. Expected: It should...
  24. validations:
  25. required: true
  26. - type: textarea
  27. id: reproduce
  28. attributes:
  29. label: Steps to reproduce
  30. description: Share the smallest repro you can.
  31. placeholder: |
  32. 1. Run...
  33. 2. Open...
  34. 3. See...
  35. validations:
  36. required: false
  37. - type: textarea
  38. id: config
  39. attributes:
  40. label: oh-my-opencode.json
  41. description: Paste your oh-my-opencode.json config.
  42. render: jsonc
  43. validations:
  44. required: false
  45. - type: input
  46. id: opencode-version
  47. attributes:
  48. label: OpenCode version
  49. placeholder: 0.4.12
  50. validations:
  51. required: false
  52. - type: input
  53. id: plugin-version
  54. attributes:
  55. label: oh-my-opencode-slim version
  56. placeholder: 0.0.0
  57. validations:
  58. required: false
  59. - type: input
  60. id: os
  61. attributes:
  62. label: Operating system
  63. placeholder: macOS 15.4 / Ubuntu 24.04 / Windows 11
  64. validations:
  65. required: false
  66. - type: textarea
  67. id: logs
  68. attributes:
  69. label: Logs, screenshots, or extra context
  70. description: Add anything else that may help us reproduce or understand the bug.
  71. render: shell
  72. validations:
  73. required: false