bug_report.yml 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. name: Bug Report
  2. description: Report an Electron bug
  3. title: "[Bug]: "
  4. labels: "bug :beetle:"
  5. body:
  6. - type: checkboxes
  7. attributes:
  8. label: Preflight Checklist
  9. description: Please ensure you've completed all of the following.
  10. options:
  11. - label: I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/main/CONTRIBUTING.md) for this project.
  12. required: true
  13. - label: I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/main/CODE_OF_CONDUCT.md) that this project adheres to.
  14. required: true
  15. - label: I have searched the [issue tracker](https://www.github.com/electron/electron/issues) for a feature request that matches the one I want to file, without success.
  16. required: true
  17. - type: input
  18. attributes:
  19. label: Electron Version
  20. description: What version of Electron are you using?
  21. placeholder: 12.0.0
  22. validations:
  23. required: true
  24. - type: dropdown
  25. attributes:
  26. label: What operating system are you using?
  27. options:
  28. - Windows
  29. - macOS
  30. - Ubuntu
  31. - Other Linux
  32. - Other (specify below)
  33. validations:
  34. required: true
  35. - type: input
  36. attributes:
  37. label: Operating System Version
  38. description: What operating system version are you using? On Windows, click Start button > Settings > System > About. On macOS, click the Apple Menu > About This Mac. On Linux, use lsb_release or uname -a.
  39. placeholder: "e.g. Windows 10 version 1909, macOS Catalina 10.15.7, or Ubuntu 20.04"
  40. validations:
  41. required: true
  42. - type: dropdown
  43. attributes:
  44. label: What arch are you using?
  45. options:
  46. - x64
  47. - ia32
  48. - arm64 (including Apple Silicon)
  49. - Other (specify below)
  50. validations:
  51. required: true
  52. - type: input
  53. attributes:
  54. label: Last Known Working Electron version
  55. description: What is the last version of Electron this worked in, if applicable?
  56. placeholder: 11.0.0
  57. - type: textarea
  58. attributes:
  59. label: Expected Behavior
  60. description: A clear and concise description of what you expected to happen.
  61. validations:
  62. required: true
  63. - type: textarea
  64. attributes:
  65. label: Actual Behavior
  66. description: A clear description of what actually happens.
  67. validations:
  68. required: true
  69. - type: input
  70. attributes:
  71. label: Testcase Gist URL
  72. description: If you can reproduce the issue in a standalone test case, please use [Electron Fiddle](https://github.com/electron/fiddle) to create one and to publish it as a [GitHub gist](https://gist.github.com) and put the gist URL here. This is **the best way** to ensure this issue is triaged quickly.
  73. placeholder: https://gist.github.com/...
  74. - type: textarea
  75. attributes:
  76. label: Additional Information
  77. description: If your problem needs further explanation, or if the issue you're seeing cannot be reproduced in a gist, please add more information here.