bug_report.yml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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: input
  29. id: version
  30. attributes:
  31. label: Laravel version
  32. description: |
  33. Run `composer show -v | grep laravel/framework`
  34. placeholder: "example: 10.0.1"
  35. validations:
  36. required: true
  37. - type: textarea
  38. id: scribe_config
  39. attributes:
  40. label: Scribe config
  41. description: Run `php artisan scribe:config:diff` and paste it here
  42. render: ruby
  43. validations:
  44. required: true
  45. - type: textarea
  46. id: what-happened
  47. attributes:
  48. label: What happened?
  49. description: |
  50. 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.
  51. placeholder: I ran `php artisan scribe:generate`, and then...
  52. validations:
  53. required: true
  54. - type: checkboxes
  55. id: docs
  56. attributes:
  57. label: Docs
  58. options:
  59. - 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
  60. required: true