bug_report.yml 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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 bug report that matches the one I want to file, without success.
  16. required: true
  17. - type: input
  18. attributes:
  19. label: Electron Version
  20. description: |
  21. What version of Electron are you using?
  22. Note: Please only report issues for [currently supported versions of Electron](https://www.electronjs.org/docs/latest/tutorial/support#currently-supported-versions).
  23. placeholder: 17.0.0
  24. validations:
  25. required: true
  26. - type: dropdown
  27. attributes:
  28. label: What operating system are you using?
  29. options:
  30. - Windows
  31. - macOS
  32. - Ubuntu
  33. - Other Linux
  34. - Other (specify below)
  35. validations:
  36. required: true
  37. - type: input
  38. attributes:
  39. label: Operating System Version
  40. 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.
  41. placeholder: "e.g. Windows 10 version 1909, macOS Catalina 10.15.7, or Ubuntu 20.04"
  42. validations:
  43. required: true
  44. - type: dropdown
  45. attributes:
  46. label: What arch are you using?
  47. options:
  48. - x64
  49. - ia32
  50. - arm64 (including Apple Silicon)
  51. - Other (specify below)
  52. validations:
  53. required: true
  54. - type: input
  55. attributes:
  56. label: Last Known Working Electron version
  57. description: What is the last version of Electron this worked in, if applicable?
  58. placeholder: 16.0.0
  59. - type: textarea
  60. attributes:
  61. label: Expected Behavior
  62. description: A clear and concise description of what you expected to happen.
  63. validations:
  64. required: true
  65. - type: textarea
  66. attributes:
  67. label: Actual Behavior
  68. description: A clear description of what actually happens.
  69. validations:
  70. required: true
  71. - type: input
  72. attributes:
  73. label: Testcase Gist URL
  74. 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.
  75. placeholder: https://gist.github.com/...
  76. - type: textarea
  77. attributes:
  78. label: Additional Information
  79. 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.