From dfe78d4f945257eec34820a5ba990fa9dfe79e69 Mon Sep 17 00:00:00 2001 From: mainrs <5113257+mainrs@users.noreply.github.com> Date: Wed, 2 Feb 2022 22:40:38 +0100 Subject: [PATCH] chore: add question issue template --- .github/ISSUE_TEMPLATE/question.yaml | 47 ++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/question.yaml diff --git a/.github/ISSUE_TEMPLATE/question.yaml b/.github/ISSUE_TEMPLATE/question.yaml new file mode 100644 index 000000000..d7be1d3f3 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/question.yaml @@ -0,0 +1,47 @@ +name: Question +description: Ask a question +title: 'question: ' +labels: [question] + +body: +- type: textarea + id: question + attributes: + label: Question + validations: + required: true +- type: textarea + id: maintainers + attributes: + label: Maintainer CC + description: | + Please @ people who are in the `meta.maintainers` list of the module in question. + If in doubt, check `git blame` for whoever last touched something. + validations: + required: false + +- type: markdown + attributes: + value: | + Information about how you use nix and home-manager and your system that runs them. +- type: textarea + id: system + attributes: + label: System + description: Please run `nix-shell -p nix-info --run "nix-info -m"` and paste the output below. + render: markdown + validations: + required: true +- type: checkboxes + id: usage + attributes: + label: Usage + options: + - label: Do you use nix flakes? + required: false + - label: Do you use home-manager as a standalone program? + required: false + - label: Do you use home-manager as a NixOS module? + required: false + validations: + required: false