bug_report.yml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. name: Bug report
  2. description: Something didn't work as expected? Create a report to help us improve.
  3. labels: ["bug", "triage"]
  4. assignees: []
  5. body:
  6. - type: markdown
  7. attributes:
  8. value: |
  9. Before submitting an issue, try updating your Scribe version and other common solutions mentioned in the [Troubleshooting Guide](https://scribe.knuckles.wtf/laravel/troubleshooting).
  10. Also search the docs and existing issues for any related problems or solutions.
  11. - type: input
  12. id: scribe_version
  13. attributes:
  14. label: Scribe version
  15. description: Run `composer show knuckleswtf/scribe`.
  16. placeholder: "example: 4.8.0"
  17. validations:
  18. required: true
  19. - type: input
  20. id: php_version
  21. attributes:
  22. label: PHP version
  23. description: Run `php -v`.
  24. placeholder: "example: 8.1"
  25. validations:
  26. required: true
  27. - type: input
  28. id: framework_version
  29. attributes:
  30. label: Framework and version
  31. description: Run `composer show laravel/framework` or `composer show laravel/lumen-framework`
  32. placeholder: "example: Laravel 10.0.1"
  33. validations:
  34. required: true
  35. - type: textarea
  36. id: scribe_config
  37. attributes:
  38. label: Scribe config
  39. description: Run `php artisan scribe:config:diff` and paste it here
  40. render: yaml
  41. validations:
  42. required: true
  43. - type: textarea
  44. id: what-happened
  45. attributes:
  46. label: What happened?
  47. description: |
  48. 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.
  49. placeholder: I ran `php artisan scribe:generate`, and then...
  50. validations:
  51. required: true
  52. - type: checkboxes
  53. id: docs
  54. attributes:
  55. label: Docs
  56. options:
  57. - label: I've checked [the docs](https://scribe.knuckles.wtf/laravel) and existing issues, but I didn't find a solution
  58. required: true