1-bug.yml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. name: 🐛 Bug report
  2. labels: Bug
  3. description: Describe a bug with a project
  4. body:
  5. - type: checkboxes
  6. id: initial-checklist
  7. attributes:
  8. label: Initial checklist
  9. options:
  10. - label:
  11. I understand this is a bug report and questions should be posted in
  12. the [Community Forum](https://community.transloadit.com/)
  13. required: true
  14. - label:
  15. I searched
  16. [issues](https://github.com/transloadit/uppy/issues?q=is%3Aissue)
  17. and couldn’t find anything (or linked relevant results below)
  18. required: true
  19. - type: input
  20. id: runnable-example
  21. attributes:
  22. label: Link to runnable example
  23. description: |
  24. Link to repository or sandbox with runnable example of the issue.
  25. Alternatively, use the next section *Steps to reproduce*.
  26. Starters:
  27. - [Uppy Dashboard](https://stackblitz.com/edit/vitejs-vite-zaqyaf?file=main.js)
  28. - [Uppy React](https://stackblitz.com/edit/vitejs-vite-vehvbq?file=src%2FApp.tsx)
  29. - [Uppy Vue](https://stackblitz.com/edit/vitejs-vite-ubjwys?file=src%2FApp.vue)
  30. validations:
  31. required: false
  32. - type: textarea
  33. id: steps-to-reproduce
  34. attributes:
  35. label: Steps to reproduce
  36. description:
  37. How did this happen? Please provide a [minimal, reproducible
  38. example](https://stackoverflow.com/help/minimal-reproducible-example).
  39. validations:
  40. required: true
  41. - type: textarea
  42. id: expected-behavior
  43. attributes:
  44. label: Expected behavior
  45. description: What should happen?
  46. validations:
  47. required: true
  48. - type: textarea
  49. id: actual-behavior
  50. attributes:
  51. label: Actual behavior
  52. description: What happens instead?
  53. validations:
  54. required: true