-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use forms for Issue and PR templates
- Loading branch information
1 parent
f71cca4
commit d8115ce
Showing
7 changed files
with
195 additions
and
101 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
name: Bug Report | ||
description: Provide information about a problem you are experiencing. | ||
type: Bug | ||
|
||
body: | ||
- type: checkboxes | ||
attributes: | ||
label: Have you searched for an existing issue? | ||
description: Use the issue search box to see if one already exists for the bug you encountered. | ||
options: | ||
- label: Yes, I tried searching | ||
required: true | ||
|
||
- type: textarea | ||
id: summary | ||
attributes: | ||
label: Brief Summary | ||
description: | | ||
Provide an overview of the problem, include any information that may help us triage this issue. | ||
Provide screenshots if possible, but do NOT show sensitive data (use View -> Allow Screen Capture). | ||
required: true | ||
|
||
- type: textarea | ||
id: steps | ||
attributes: | ||
label: Steps to Reproduce | ||
description: Provide a simple set of steps to reproduce this bug. | ||
placeholder: | | ||
1. | ||
2. | ||
3. | ||
required: true | ||
|
||
- type: textarea | ||
id: expected_vs_actual | ||
attributes: | ||
label: Expected Versus Actual Behavior | ||
description: Tell us what you expected to happen and what actually happened. | ||
|
||
- type: textarea | ||
id: debug_info | ||
attributes: | ||
label: KeePassXC Debug Information | ||
placeholder: "Paste the output of: Help -> About -> Debug Info" | ||
render: Text | ||
|
||
- type: dropdown | ||
id: os | ||
attributes: | ||
label: Operating System | ||
description: Select your operating system. | ||
options: | ||
- Windows | ||
- Linux | ||
- macOS | ||
|
||
- type: dropdown | ||
id: desktop_env | ||
attributes: | ||
label: Linux Desktop Environment | ||
description: If on Linux, please select your desktop environment. | ||
options: | ||
- Gnome | ||
- KDE | ||
- XFCE | ||
- Mate / Cinnamon | ||
- Sway | ||
- i3 | ||
- Other | ||
|
||
- type: dropdown | ||
id: window_system | ||
attributes: | ||
label: Linux Windowing System | ||
description: If on Linux, please select your windowing system. | ||
options: | ||
- X11 | ||
- Wayland |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Feature Request | ||
description: Tell us about a new feature you want. | ||
type: Feature | ||
|
||
body: | ||
- type: checkboxes | ||
attributes: | ||
label: Have you searched for an existing feature request? | ||
description: Use the issue search box to see if one already exists for the feature you want. | ||
options: | ||
- label: Yes, I tried searching | ||
required: true | ||
|
||
- type: textarea | ||
id: summary | ||
attributes: | ||
label: Brief Summary | ||
description: | | ||
Provide an overview of the feature you are interested in adding. | ||
Provide screenshots if possible, but do NOT show sensitive data (use View -> Allow Screen Capture). | ||
required: true | ||
|
||
- type: textarea | ||
id: example | ||
attributes: | ||
label: Example | ||
description: Provide an example of how this feature would be used. | ||
|
||
- type: textarea | ||
id: context | ||
attributes: | ||
label: Context | ||
description: Why does this feature matter to you? What unique circumstances do you have? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
name: Pre-Release Bug Report | ||
description: Report an issue with pre-release code (e.g. snapshot builds). | ||
type: Bug | ||
labels: PRE-RELEASE BUG | ||
assignees: droidmonkey | ||
|
||
body: | ||
- type: checkboxes | ||
attributes: | ||
label: Have you searched for an existing issue? | ||
description: Use the issue search box to see if one already exists for the bug you encountered. | ||
options: | ||
- label: Yes, I tried searching | ||
required: true | ||
|
||
- type: textarea | ||
id: summary | ||
attributes: | ||
label: Brief Summary | ||
description: | | ||
Provide an overview of the problem, include any information that may help us triage this issue. | ||
Provide screenshots if possible, but do NOT show sensitive data (use View -> Allow Screen Capture). | ||
required: true | ||
|
||
- type: textarea | ||
id: steps | ||
attributes: | ||
label: Steps to Reproduce | ||
description: Provide a simple set of steps to reproduce this bug. | ||
placeholder: | | ||
1. | ||
2. | ||
3. | ||
required: true | ||
|
||
- type: textarea | ||
id: expected_vs_actual | ||
attributes: | ||
label: Expected Versus Actual Behavior | ||
description: Tell us what you expected to happen and what actually happened. | ||
|
||
- type: textarea | ||
id: debug_info | ||
attributes: | ||
label: KeePassXC Debug Information | ||
placeholder: "Paste the output of: Help -> About -> Debug Info" | ||
render: Text | ||
|
||
- type: dropdown | ||
id: os | ||
attributes: | ||
label: Operating System | ||
description: Select your operating system. | ||
options: | ||
- Windows | ||
- Linux | ||
- macOS | ||
|
||
- type: dropdown | ||
id: desktop_env | ||
attributes: | ||
label: Linux Desktop Environment | ||
description: If on Linux, please select your desktop environment. | ||
options: | ||
- Gnome | ||
- KDE | ||
- XFCE | ||
- Mate / Cinnamon | ||
- Sway | ||
- i3 | ||
- Other | ||
|
||
- type: dropdown | ||
id: window_system | ||
attributes: | ||
label: Linux Windowing System | ||
description: If on Linux, please select your windowing system. | ||
options: | ||
- X11 | ||
- Wayland |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters