-
-
Notifications
You must be signed in to change notification settings - Fork 158
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add GitHub issue templates to standardize issue formatting and reduce maintainer effort. Closes: #268 Link: https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-issue-forms Link: #516 Reviewed-by: Daniel Thwaites <[email protected]>
- Loading branch information
Showing
1 changed file
with
72 additions
and
0 deletions.
There are no files selected for viewing
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,72 @@ | ||
--- | ||
description: Report a bug. | ||
labels: [bug] | ||
name: Bug | ||
title: "<SCOPE>: <SUMMARY>" | ||
|
||
body: | ||
- type: textarea | ||
|
||
attributes: | ||
description: >- | ||
Describe the issue in detail. Consider including a minimal working | ||
example, logs, or screenshots. | ||
label: Description | ||
|
||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
|
||
attributes: | ||
description: >- | ||
Copy-paste the `flake.lock` file. If flakes are not used, provide the | ||
locked input versions. | ||
label: flake.lock | ||
|
||
placeholder: |- | ||
{ | ||
"nodes": { | ||
}, | ||
"root": "root", | ||
"version": 7 | ||
} | ||
render: json | ||
|
||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
|
||
attributes: | ||
description: How is Stylix installed? | ||
label: Installation Method | ||
|
||
options: | ||
- NixOS | ||
- Home Manager | ||
- nix-darwin | ||
- Other | ||
|
||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
|
||
attributes: | ||
description: "`nix-info --markdown` output." | ||
label: System Information | ||
|
||
placeholder: |- | ||
- system: | ||
- host os: | ||
- multi-user?: | ||
- sandbox: | ||
- version: | ||
- nixpkgs: | ||
validations: | ||
required: true |