1
0

BUG_REPORT.yml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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.23.0
  13. - 1.22.0
  14. - 1.21.0
  15. - 1.20.0
  16. - 1.19.1
  17. - 1.19.0
  18. - 1.18.0
  19. - 1.17.2
  20. - 1.16.0
  21. - Other
  22. validations:
  23. required: true
  24. - type: textarea
  25. id: what-happened
  26. attributes:
  27. label: What happened?
  28. description: Also tell us, what did you expect to happen?
  29. placeholder: Tell us what you see!
  30. value: "A bug happened!"
  31. validations:
  32. required: true
  33. - type: textarea
  34. id: logs
  35. attributes:
  36. label: Relevant log output
  37. description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
  38. render: shell
  39. - type: textarea
  40. id: schema
  41. attributes:
  42. label: Database schema
  43. description: Please include definitions for the relevant database tables. This will be automatically formatted as SQL, so no need for backticks.
  44. render: sql
  45. - type: textarea
  46. id: queries
  47. attributes:
  48. label: SQL queries
  49. description: Please include the SQL queries causing issues. This will be automatically formatted as SQL, so no need for backticks.
  50. render: sql
  51. - type: textarea
  52. id: config
  53. attributes:
  54. label: Configuration
  55. description: Please include the sqlc.(yaml|yml) or sqlc.json file you using in your project. This will be automatically formatted, so no need for backticks.
  56. render: yaml
  57. - type: input
  58. id: playground
  59. attributes:
  60. label: Playground URL
  61. description: "Link to a reproduction of the issue on the sqlc playground"
  62. placeholder: "https://play.sqlc.dev/"
  63. - type: dropdown
  64. id: os
  65. attributes:
  66. label: What operating system are you using?
  67. multiple: true
  68. options:
  69. - Linux
  70. - Windows
  71. - macOS
  72. - type: dropdown
  73. id: engines
  74. attributes:
  75. label: What database engines are you using?
  76. multiple: true
  77. options:
  78. - MySQL
  79. - PostgreSQL
  80. - SQLite
  81. - type: dropdown
  82. id: languages
  83. attributes:
  84. label: What type of code are you generating?
  85. multiple: true
  86. options:
  87. - Go
  88. - Python
  89. - Kotlin