bug_report.yml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. name: Bug Report
  2. description: Clearly report a bug with detailed repro steps
  3. labels: ["bug"]
  4. body:
  5. - type: input
  6. id: version
  7. attributes:
  8. label: App Version
  9. description: Specify exactly which version you're using (e.g., v3.3.1)
  10. validations:
  11. required: true
  12. - type: dropdown
  13. id: provider
  14. attributes:
  15. label: API Provider
  16. description: Choose the API provider involved
  17. multiple: false
  18. options:
  19. - OpenRouter
  20. - Anthropic
  21. - Google Gemini
  22. - DeepSeek
  23. - OpenAI
  24. - OpenAI Compatible
  25. - GCP Vertex AI
  26. - AWS Bedrock
  27. - Requesty
  28. - Glama
  29. - VS Code LM API
  30. - LM Studio
  31. - Ollama
  32. validations:
  33. required: true
  34. - type: input
  35. id: model
  36. attributes:
  37. label: Model Used
  38. description: Clearly specify the exact model (e.g., Claude 3.7 Sonnet)
  39. validations:
  40. required: true
  41. - type: textarea
  42. id: what-happened
  43. attributes:
  44. label: Actual vs. Expected Behavior
  45. description: Clearly state what actually happened and what you expected instead.
  46. placeholder: Provide precise details of the issue here.
  47. validations:
  48. required: true
  49. - type: textarea
  50. id: steps
  51. attributes:
  52. label: Detailed Steps to Reproduce
  53. description: |
  54. List the exact steps someone must follow to reproduce this bug:
  55. 1. Starting conditions (software state, settings, environment)
  56. 2. Precise actions taken (every click, selection, input)
  57. 3. Clearly observe and report outcomes
  58. value: |
  59. 1.
  60. 2.
  61. 3.
  62. validations:
  63. required: true
  64. - type: textarea
  65. id: logs
  66. attributes:
  67. label: Relevant API Request Output
  68. description: Paste relevant API logs or outputs here (formatted automatically as code)
  69. render: shell
  70. - type: textarea
  71. id: additional-context
  72. attributes:
  73. label: Additional Context
  74. description: Include extra details, screenshots, or related issues.