bug_report.yml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. name: 🐛 Bug report
  2. description: Report a reproducible bug or regression in this library.
  3. labels: [bug]
  4. body:
  5. - type: markdown
  6. attributes:
  7. value: |
  8. # Bug report
  9. 👋 Hi!
  10. **Please fill the following carefully before opening a new issue ❗**
  11. *(Your issue may be closed if it doesn't provide the required pieces of information)*
  12. - type: checkboxes
  13. attributes:
  14. label: Before submitting a new issue
  15. description: Please perform simple checks first.
  16. options:
  17. - label: I tested using the latest version of the library, as the bug might be already fixed.
  18. required: true
  19. - label: I tested using a [supported version](https://github.com/reactwg/react-native-releases/blob/main/docs/support.md) of react native.
  20. required: true
  21. - label: I checked for possible duplicate issues, with possible answers.
  22. required: true
  23. - type: textarea
  24. id: summary
  25. attributes:
  26. label: Bug summary
  27. description: |
  28. Provide a clear and concise description of what the bug is.
  29. If needed, you can also provide other samples: error messages / stack traces, screenshots, gifs, etc.
  30. validations:
  31. required: true
  32. - type: input
  33. id: library-version
  34. attributes:
  35. label: Library version
  36. description: What version of the library are you using?
  37. placeholder: "x.x.x"
  38. validations:
  39. required: true
  40. - type: textarea
  41. id: react-native-info
  42. attributes:
  43. label: Environment info
  44. description: Run `react-native info` in your terminal and paste the results here.
  45. render: shell
  46. validations:
  47. required: true
  48. - type: textarea
  49. id: steps-to-reproduce
  50. attributes:
  51. label: Steps to reproduce
  52. description: |
  53. You must provide a clear list of steps and code to reproduce the problem.
  54. value: |
  55. 1. …
  56. 2. …
  57. validations:
  58. required: true
  59. - type: input
  60. id: reproducible-example
  61. attributes:
  62. label: Reproducible example repository
  63. description: Please provide a link to a repository on GitHub with a reproducible example.
  64. validations:
  65. required: true