Skip to content

Commit 41660c1

Browse files
authored
Update issue templates
1 parent ddd25a9 commit 41660c1

File tree

5 files changed

+54
-2
lines changed

5 files changed

+54
-2
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: Bug report
33
about: Create a report to help us improve
4-
title: ''
4+
title: "[Bug]"
55
labels: bug
66
assignees: ''
77

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
name: Documentation
3+
about: Describe this issue template's purpose here.
4+
title: "[Docs]"
5+
labels: documentation
6+
assignees: ''
7+
8+
---
9+
10+
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
name: Failing test
3+
about: Describe this issue template's purpose here.
4+
title: "[Failing test]"
5+
labels: failing test case
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is or a link to it
12+
13+
## Test code
14+
```
15+
using var fixture = new EmptyRepositoryFixture();
16+
fixture.Repository.MakeACommit();
17+
fixture.BranchTo("develop");
18+
fixture.Repository.MakeCommits(3);
19+
20+
fixture.AssertFullSemver("0.1.0-alpha.1");
21+
```

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: Feature request
33
about: Suggest an idea for this project
4-
title: ''
4+
title: "[Feature]"
55
labels: feature
66
assignees: ''
77

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
name: Improvement request
3+
about: Describe this issue template's purpose here.
4+
title: "[Improvement]"
5+
labels: improvement
6+
assignees: ''
7+
8+
---
9+
10+
**Is your improvement request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
## Detailed Description
14+
<!--- Provide a detailed description of the change or addition you are proposing -->
15+
16+
## Context
17+
<!--- Why is this change important to you? How would you use it? -->
18+
<!--- How can it benefit other users? -->
19+
20+
## Possible Implementation
21+
<!--- Not obligatory, but suggest an idea for implementing addition or change -->

0 commit comments

Comments
 (0)