---01-bug-report.yml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. name: "\U0001F41B Bug Report"
  2. description: Report an issue or possible bug
  3. labels: []
  4. assignees: []
  5. body:
  6. - type: markdown
  7. attributes:
  8. value: |
  9. ## Quick Checklist
  10. Thank you for taking the time to file a bug report! Please fill out this form as completely as possible.
  11. ✅ I am using the **latest version of Astro** and all plugins.
  12. ✅ I am using a version of Node that Astro supports (`>=18.14.1`)
  13. - type: textarea
  14. id: astro-info
  15. attributes:
  16. label: Astro Info
  17. description: Run the command `astro info` in your terminal and paste the output here. Please review the data before submitting in case there is any sensitive information you don't want to share.
  18. render: block
  19. validations:
  20. required: true
  21. - type: input
  22. id: browser
  23. attributes:
  24. label: If this issue only occurs in one browser, which browser is a problem?
  25. placeholder: Chrome, Firefox, Safari
  26. - type: textarea
  27. id: bug-description
  28. attributes:
  29. label: Describe the Bug
  30. description: A clear and concise description of what the bug is.
  31. validations:
  32. required: true
  33. - type: textarea
  34. id: bug-expectation
  35. attributes:
  36. label: What's the expected result?
  37. description: Describe what you expect to happen.
  38. validations:
  39. required: true
  40. - type: input
  41. id: bug-reproduction
  42. attributes:
  43. label: Link to Minimal Reproducible Example
  44. description: 'Use [astro.new](https://astro.new) to create a minimal reproduction of the problem. **A minimal reproduction is required** so that others can help debug your issue. If a report is vague (e.g. just a generic error message) and has no reproduction, it may be auto-closed. Not sure how to create a minimal example? [Read our guide](https://docs.astro.build/en/guides/troubleshooting/#creating-minimal-reproductions)'
  45. placeholder: 'https://stackblitz.com/abcd1234'
  46. validations:
  47. required: true
  48. - type: checkboxes
  49. id: will-pr
  50. attributes:
  51. label: Participation
  52. options:
  53. - label: I am willing to submit a pull request for this issue.
  54. required: false