Skip to content

Commit

Permalink
doc: add GitHub issue templates
Browse files Browse the repository at this point in the history
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
trueNAHO committed Aug 21, 2024
1 parent 94d7029 commit b7ffdc9
Showing 1 changed file with 72 additions and 0 deletions.
72 changes: 72 additions & 0 deletions .github/ISSUE_TEMPLATE/bug.yml
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

0 comments on commit b7ffdc9

Please sign in to comment.