BUG_REPORT.yml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. name: Bug Report
  2. description: File a bug report
  3. labels: [bug, triage]
  4. body:
  5. - type: dropdown
  6. id: version
  7. attributes:
  8. label: Version
  9. description: What version of sqlc are you running? If you don't know, run `sqlc version`.
  10. multiple: false
  11. options:
  12. - 1.12.0
  13. - 1.11.0
  14. - 1.10.0
  15. - Other
  16. validations:
  17. required: true
  18. - type: textarea
  19. id: what-happened
  20. attributes:
  21. label: What happened?
  22. description: Also tell us, what did you expect to happen?
  23. placeholder: Tell us what you see!
  24. value: "A bug happened!"
  25. validations:
  26. required: true
  27. - type: textarea
  28. id: logs
  29. attributes:
  30. label: Relevant log output
  31. description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
  32. render: shell
  33. - type: textarea
  34. id: schema
  35. attributes:
  36. label: Database schema
  37. description: Please include definitions for the relevant database tables. This will be automatically formatted as SQL, so no need for backticks.
  38. render: sql
  39. - type: textarea
  40. id: queries
  41. attributes:
  42. label: SQL queries
  43. description: Please include the SQL queries causing issues. This will be automatically formatted as SQL, so no need for backticks.
  44. render: sql
  45. - type: textarea
  46. id: config
  47. attributes:
  48. label: Configuration
  49. description: Please include the sqlc.yaml or sqlc.json file you using in your project. This will be automatically formatted, so no need for backticks.
  50. render: yaml
  51. - type: input
  52. id: playground
  53. attributes:
  54. label: Playground URL
  55. description: "Link to a reproduction of the issue on the sqlc playground"
  56. placeholder: "https://play.sqlc.dev/"
  57. - type: dropdown
  58. id: os
  59. attributes:
  60. label: What operating system are you using?
  61. multiple: true
  62. options:
  63. - Linux
  64. - Windows
  65. - macOS
  66. - type: dropdown
  67. id: engines
  68. attributes:
  69. label: What database engines are you using?
  70. multiple: true
  71. options:
  72. - PostgreSQL
  73. - MySQL
  74. - type: dropdown
  75. id: languages
  76. attributes:
  77. label: What type of code are you generating?
  78. multiple: true
  79. options:
  80. - Go
  81. - Python
  82. - Kotlin