.github: add issue templates (#213)

* .github: add issue templates

As the longest maintainer of this package after vlaci I have seen
a lot of low-quality issues.

This change should make people think twice and lift some responsibility
from the maintainers. (^:

* Update .github/ISSUE_TEMPLATE/bug-report.md

Co-authored-by: Thiago Kenji Okada <thiagokokada@gmail.com>
This commit is contained in:
ckie
2022-07-22 09:19:57 +03:00
committed by GitHub
parent 724e0084ae
commit f7fd8620be
2 changed files with 44 additions and 0 deletions

10
.github/ISSUE_TEMPLATE/anything-else.md vendored Normal file
View File

@ -0,0 +1,10 @@
---
name: Anything else
about: The other 20% of issues
title: ''
labels: ''
assignees: ''
---

34
.github/ISSUE_TEMPLATE/bug-report.md vendored Normal file
View File

@ -0,0 +1,34 @@
---
name: Bug report
about: Something is broken and you want help fixing it
title: ''
labels: bug
assignees: ''
---
<!--
If you want your issue to be replied to, writing a detailed thought-out issue makes it more appealing to respond to. Otherwise, your issue will only serve as a forum for other users experiencing the issue to comment on. Replies are not to be expected by default.
To help with debugging your issue, you can try to replicate it using a minimal example with the following `flake.nix` file:
{
description = "Test";
inputs = {
nix-doom-emacs.url = "github:nix-community/nix-doom-emacs";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nix-doom-emacs, flake-utils, ... }@inputs:
flake-utils.lib.eachDefaultSystem (
system: {
packages.default = nix-doom-emacs.package.${system} {
doomPrivateDir = ./doom.d;
};
}
);
}
Make sure to also send the flake.lock!
-->