Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: clean up issue templates #3841

Merged
merged 3 commits into from
Feb 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 12 additions & 7 deletions .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Bug report
description: Create a report to help us improve Electron Forge
labels: 'Bug'
type: 'Bug'

body:
- type: checkboxes
Expand All @@ -17,29 +18,33 @@ body:
- type: input
id: forge-version
attributes:
label: Electron Forge version
description: The output of `node_modules/.bin/electron-forge --version`, e.g. 6.0.0-beta.45
label: Forge version
description: The output of `node_modules/.bin/electron-forge --version`
placeholder: 7.6.1
validations:
required: true
- type: input
id: electron-version
attributes:
label: Electron version
description: The output of `node_modules/.bin/electron --version`, e.g. 14.0.0
description: The output of `node_modules/.bin/electron --version`
placeholder: 34.0.0
validations:
required: true
- type: input
id: operating-system
attributes:
label: Operating system
description: Platform and version, for example, macOS 10.13.6 / Windows 10 (1803) / Ubuntu 18.04 x64
description: Platform and version
placeholder: macOS 10.13.6 / Windows 10 (1803) / Ubuntu 18.04 x64
validations:
required: true
- type: input
id: last-working-version
attributes:
label: Last known working Electron Forge version
description: e.g., 6.0.0-beta.44
label: Last known working Forge version
description: If this worked in a previous version of Forge, please let us know. Otherwise, please leave this field blank.
placeholder: 7.3.0
- type: textarea
id: expected-behavior
attributes:
Expand Down Expand Up @@ -75,6 +80,6 @@ body:
one exists.
* Command line arguments you are passing to `electron-forge` (e.g.,
`electron-forge make --not-a-real-flag`)
* The `config.forge` data in `package.json` or `forge.config.js` in use
* The Forge configuration you are using
* A failing minimal testcase (with a link to the code) or detailed steps to reproduce the problem.
Using `electron-forge init` is a good starting point, if that is not the source of your problem.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ contact_links:
- name: Question
url: https://discord.gg/invite/APGC3k5yaH
about: 'Please ask questions about using Electron Forge in the official Electron Discord server, at the #electron-forge channel.'
- name: Website Issues
- name: Documentation Issues
url: https://github.com/electron-forge/electron-forge-docs/issues/new
about: Website issues / pull requests should be filed in the website repository.
about: Documentation issues / pull requests should be filed in the website repository.
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Feature request
description: Suggest an idea for Electron Forge
labels: 'Enhancement'
type: 'Enhancement'

body:
- type: checkboxes
Expand Down