1-bug.yml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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: I understand this is a bug report and questions should be posted in the [Community Forum](https://community.transloadit.com/)
  11. required: true
  12. - label: I searched [issues](https://github.com/transloadit/uppy/issues?q=is%3Aissue) and couldn’t find anything (or linked relevant results below)
  13. required: true
  14. - type: input
  15. id: runnable-example
  16. attributes:
  17. label: Link to runnable example
  18. description: |
  19. Link to repository or sandbox with runnable example of the issue.
  20. Alternatively, use the next section *Steps to reproduce*.
  21. Starters:
  22. - [Uppy Dashboard](https://codesandbox.io/s/uppy-dashboard-xpxuhd?file=/src/index.js)
  23. validations:
  24. required: false
  25. - type: textarea
  26. id: steps-to-reproduce
  27. attributes:
  28. label: Steps to reproduce
  29. description: How did this happen? Please provide a [minimal, reproducible example](https://stackoverflow.com/help/minimal-reproducible-example).
  30. validations:
  31. required: true
  32. - type: textarea
  33. id: expected-behavior
  34. attributes:
  35. label: Expected behavior
  36. description: What should happen?
  37. validations:
  38. required: true
  39. - type: textarea
  40. id: actual-behavior
  41. attributes:
  42. label: Actual behavior
  43. description: What happens instead?
  44. validations:
  45. required: true