bug_report.yml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. name: Bug report
  2. description: |
  3. Something didn't work as expected? Create a report to help us improve.
  4. labels: ["bug", "triage"]
  5. assignees: []
  6. body:
  7. - type: markdown
  8. attributes:
  9. value: |
  10. Before submitting an issue, first try updating your Scribe version and other common solutions mentioned in the [troubleshooting guide](https://scribe.knuckles.wtf/laravel/troubleshooting).
  11. Also search [the docs](https://scribe.knuckles.wtf/laravel) and [existing issues](https://github.com/knuckleswtf/scribe/issues?q=is%3Aissue+) (both open and closed) for any related problems or solutions.
  12. - type: input
  13. id: scribe_version
  14. attributes:
  15. label: Scribe version
  16. description: Run `composer show -v | grep knuckleswtf/scribe`.
  17. placeholder: "example: 4.8.0"
  18. validations:
  19. required: true
  20. - type: input
  21. id: php_version
  22. attributes:
  23. label: PHP version
  24. description: Run `php -v`.
  25. placeholder: "example: 8.1"
  26. validations:
  27. required: true
  28. - type: dropdown
  29. id: framework
  30. attributes:
  31. label: Framework
  32. options:
  33. - Laravel
  34. - Lumen
  35. validations:
  36. required: true
  37. - type: input
  38. id: version
  39. attributes:
  40. label: Framework version
  41. description: |
  42. Run `composer show -v | grep laravel/framework` or `composer show -v | grep laravel/lumen-framework`
  43. placeholder: "example: 10.0.1"
  44. validations:
  45. required: true
  46. - type: textarea
  47. id: scribe_config
  48. attributes:
  49. label: Scribe config
  50. description: Run `php artisan scribe:config:diff` and paste it here
  51. render: ruby
  52. validations:
  53. required: true
  54. - type: textarea
  55. id: what-happened
  56. attributes:
  57. label: What happened?
  58. description: |
  59. Describe what happened and what you expected to happen instead. IMPORTANT: please provide enough information so I can reproduce, or I may close the issue.
  60. placeholder: I ran `php artisan scribe:generate`, and then...
  61. validations:
  62. required: true
  63. - type: checkboxes
  64. id: docs
  65. attributes:
  66. label: Docs
  67. options:
  68. - label: I've checked [the docs](https://scribe.knuckles.wtf/laravel), the [troubleshooting guide](https://scribe.knuckles.wtf/laravel/troubleshooting), and [existing issues](https://github.com/knuckleswtf/scribe/issues?q=is%3Aissue+), but I didn't find a solution
  69. required: true