Skip to content

Commit 98ffb02

Browse files
UrAvgDeveloper5A11
andauthored
chore: add issue templates (#234)
* chore: add issue templates * minor edit Co-authored-by: S Ali Hosseini <38721653+5A11@users.noreply.github.com>
1 parent 8701796 commit 98ffb02

File tree

2 files changed

+107
-0
lines changed

2 files changed

+107
-0
lines changed
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
name: 🐛 Bug Report
2+
description: Report a reproducible bug.
3+
title: "Bug report: <short description>"
4+
labels: ["bug", "unconfirmed"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thank you for reporting the issue you are facing. Please complete the following so we can have the details necessary to assist you.
10+
- type: checkboxes
11+
id: prerequisites
12+
attributes:
13+
label: Prerequisites
14+
description: Please confirm before submitting a new issue
15+
options:
16+
- label: I am running the [latest fetchd version](https://docs.fetch.ai/ledger_v2/versions/).
17+
required: true
18+
- label: I checked the [documentation](https://docs.fetch.ai/ledger_v2/cli-introduction/) and found no answer to my problem.
19+
required: true
20+
- label: I checked the [existing issues](https://github.com/fetchai/fetchd/issues) to make sure my problem has not already been reported.
21+
required: true
22+
- type: textarea
23+
id: expected
24+
attributes:
25+
label: Expected Behavior
26+
description: Describe the behavior you are expecting
27+
validations:
28+
required: true
29+
- type: textarea
30+
id: actual
31+
attributes:
32+
label: Current Behavior
33+
description: Describe the current behavior
34+
validations:
35+
required: true
36+
- type: textarea
37+
id: steps
38+
attributes:
39+
label: To Reproduce
40+
description: Detailed steps for reproducing the issue
41+
validations:
42+
required: false
43+
- type: textarea
44+
id: context
45+
attributes:
46+
label: Context
47+
description: Any relevant information about your setup (this is important in case the issue is not reproducible except for under certain conditions)
48+
placeholder: |
49+
Operating system [e.g. MacOS], Go version [e.g. 1.18.2], fetchd version [e.g. v0.10.4], ...
50+
validations:
51+
required: true
52+
- type: textarea
53+
id: logs
54+
attributes:
55+
label: Failure Logs
56+
description: Include any relevant log snippets or files here
57+
validations:
58+
required: false
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
name: ☝️ Feature request
2+
description: Suggest an idea for this project
3+
title: "Feature request: <short description>"
4+
labels: ["enhancement", "unconfirmed"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thank you for suggesting a new idea for this project. Please complete the following to ensure we have all the details to get things started.
10+
- type: checkboxes
11+
id: prerequisites
12+
attributes:
13+
label: Prerequisites
14+
description: Please confirm before submitting a feature request.
15+
options:
16+
- label: I checked the [documentation](https://docs.fetch.ai/ledger_v2/cli-introduction/) and made sure this feature does not already exist.
17+
required: true
18+
- label: I checked the [existing issues](https://github.com/fetchai/fetchd/issues) to make sure this feature has not already been requested.
19+
required: true
20+
- type: textarea
21+
id: problem
22+
attributes:
23+
label: Problem
24+
description: |
25+
If your feature request relates to a problem, provide a description here, e.g. I'm always frustrated when [...]
26+
validations:
27+
required: false
28+
- type: textarea
29+
id: solution
30+
attributes:
31+
label: Feature / Solution
32+
description: |
33+
Provide a description of what you want to happen
34+
validations:
35+
required: true
36+
- type: textarea
37+
id: alternatives
38+
attributes:
39+
label: Alternatives
40+
description: |
41+
Provide any alternative solutions or features you've considered
42+
- type: textarea
43+
id: info
44+
attributes:
45+
label: Additional Context
46+
description: |
47+
Any other context or screenshots about the feature request
48+
validations:
49+
required: false

0 commit comments

Comments
 (0)