diff options
author | Théophane Hufschmitt <7226587+thufschmitt@users.noreply.github.com> | 2022-12-07 11:24:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-07 11:24:28 +0100 |
commit | c4a6113800dd3aa4eb95b74853c844331af82f1e (patch) | |
tree | 32e4d31fc2f6a4af84be3af487b5b0b0f60e726a | |
parent | 4cd3abd8463ce8e3690d9e6aaa765233ea635c70 (diff) | |
parent | e5a2af2832d285f221ea021db3a55257db6e8dfe (diff) |
Merge pull request #7418 from fricklerhandwerk/installer-issue
add template for installer issues
-rw-r--r-- | .github/ISSUE_TEMPLATE/installer.md | 36 | ||||
-rw-r--r-- | scripts/install-multi-user.sh | 3 |
2 files changed, 38 insertions, 1 deletions
diff --git a/.github/ISSUE_TEMPLATE/installer.md b/.github/ISSUE_TEMPLATE/installer.md new file mode 100644 index 000000000..3768a49c9 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/installer.md @@ -0,0 +1,36 @@ +--- +name: Installer issue +about: Report problems with installation +title: '' +labels: installer +assignees: '' + +--- + +## Platform + +<!-- select the platform on which you tried to install Nix --> + +- [ ] Linux: <!-- state your distribution, e.g. Arch Linux, Ubuntu, ... --> +- [ ] macOS +- [ ] WSL + +## Additional information + +<!-- state special circumstances on your system or additional steps you have taken prior to installation --> + +## Output + +<details><summary>Output</summary> + +```log + +<!-- paste console output here and remove this comment --> + +``` + +</details> + +## Priorities + +Add :+1: to [issues you find important](https://github.com/NixOS/nix/issues?q=is%3Aissue+is%3Aopen+sort%3Areactions-%2B1-desc). diff --git a/scripts/install-multi-user.sh b/scripts/install-multi-user.sh index 96c0f302b..194a263fb 100644 --- a/scripts/install-multi-user.sh +++ b/scripts/install-multi-user.sh @@ -97,7 +97,8 @@ is_os_darwin() { } contact_us() { - echo "You can open an issue at https://github.com/nixos/nix/issues" + echo "You can open an issue at" + echo "https://github.com/NixOS/nix/issues/new?labels=installer&template=installer.md" echo "" echo "Or feel free to contact the team:" echo " - Matrix: #nix:nixos.org" |