bug_report.yml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. name: Report a bug
  2. description: Tell us about a bug or issue you may have identified in Bootstrap.
  3. title: "Provide a general summary of the issue"
  4. labels: [bug]
  5. assignees: "-"
  6. body:
  7. - type: checkboxes
  8. attributes:
  9. label: Prerequisites
  10. description: Take a couple minutes to help our maintainers work faster.
  11. options:
  12. - label: I have [searched](https://github.com/twbs/bootstrap/issues?utf8=%E2%9C%93&q=is%3Aissue) for duplicate or closed issues
  13. required: true
  14. - label: I have [validated](https://html5.validator.nu/) any HTML to avoid common problems
  15. required: true
  16. - label: I have read the [contributing guidelines](https://github.com/twbs/bootstrap/blob/main/.github/CONTRIBUTING.md)
  17. required: true
  18. - type: textarea
  19. id: what-happened
  20. attributes:
  21. label: Describe the issue
  22. description: Provide a summary of the issue and what you expected to happen, including specific steps to reproduce.
  23. validations:
  24. required: true
  25. - type: textarea
  26. id: reduced-test-case
  27. attributes:
  28. label: Reduced test cases
  29. description: Include links [reduced test case](https://css-tricks.com/reduced-test-cases/) links or suggested fixes using CodePen ([v4 template](https://codepen.io/team/bootstrap/pen/yLabNQL) or [v5 template](https://codepen.io/team/bootstrap/pen/qBamdLj)).
  30. validations:
  31. required: true
  32. - type: dropdown
  33. id: os
  34. attributes:
  35. label: What operating system(s) are you seeing the problem on?
  36. multiple: true
  37. options:
  38. - Windows
  39. - macOS
  40. - Android
  41. - iOS
  42. - Linux
  43. validations:
  44. required: true
  45. - type: dropdown
  46. id: browser
  47. attributes:
  48. label: What browser(s) are you seeing the problem on?
  49. multiple: true
  50. options:
  51. - Chrome
  52. - Safari
  53. - Firefox
  54. - Microsoft Edge
  55. - Opera
  56. - type: input
  57. id: version
  58. attributes:
  59. label: What version of Bootstrap are you using?
  60. placeholder: "e.g., v5.1.0 or v4.5.2"
  61. validations:
  62. required: true