diff options
author | Miran <narimiran@users.noreply.github.com> | 2018-10-19 16:52:14 +0200 |
---|---|---|
committer | Miran <narimiran@users.noreply.github.com> | 2018-10-19 16:52:14 +0200 |
commit | fc625091e0fdc816c6f092c5b86d9b5f79502431 (patch) | |
tree | a347f8a466297a6b34bfa5ec00a836e54762f093 | |
parent | cd9bc941e1315f47efd1ec567249a16347c0319a (diff) | |
download | Nim-fc625091e0fdc816c6f092c5b86d9b5f79502431.tar.gz |
Update issue templates
Create `bug report` and `feature request` templates.
-rw-r--r-- | .github/ISSUE_TEMPLATE/bug_report.md | 45 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/feature_request.md | 23 |
2 files changed, 68 insertions, 0 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 000000000..383ec23f8 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,45 @@ +--- +name: Bug report +about: You found an unexpected behaviour? Use this template. + +--- + +<!-- Think about the title, twice. --> + +<!-- Summarize the Problem here, keep it simple. --> +<!-- e.g. `echo` outputs the wrong string. --> + + +### Example +<!-- This should be a source code block. +```nim +echo "Hello World!" +``` +--> + + +### Current Output +<!-- +``` +Hola mundo! +``` +--> + + +### Expected Output +<!-- +``` +Hello World! +``` +--> + + +### Possible Solution +<!--- Have you found a possible solution? Post it here. --> + + +### Additional Information +<!--- For Example: + A link to a project where the issue is relevant. + A link to a related issue or discussion. +--> diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 000000000..04da773bf --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,23 @@ +--- +name: Feature request +about: You want to suggest a new feature? Use this template. + +--- + +### Summary +<!--- Short summary of your proposed feature --> + + +### Description +<!--- Describe your solution, what problem does it fix? --> + + +### Alternatives +<!--- Are there any alternatives you've considered? --> + + +### Additional Information +<!--- For Example: + A link to a project where the issue is relevant. + A link to a related issue or discussion. + --> |