Skip to content

Commit 507e927

Browse files
authored
Merge pull request #1603 from alex-semenyuk/issues_template
Issue templates
2 parents c6ef02e + 49b00af commit 507e927

File tree

4 files changed

+125
-0
lines changed

4 files changed

+125
-0
lines changed
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
name: 🐞 Bug
2+
description: File a bug/issue
3+
title: "bug: "
4+
labels: [bug]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
_The more information you share, the faster we can help you._
10+
Prior to opening the issue, please make sure that you:
11+
- Use English (EN/US) to communicate.
12+
- Search the [open issues](https://github.com/hyperledger/firefly/issues) to avoid duplicating the issue.
13+
14+
- type: textarea
15+
id: problem
16+
attributes:
17+
label: What happened?
18+
description: |
19+
Please provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner.
20+
If this matter is security related, please disclose it privately via [email protected]
21+
validations:
22+
required: true
23+
24+
- type: textarea
25+
id: expected
26+
attributes:
27+
label: What did you expect to happen?
28+
validations:
29+
required: true
30+
31+
- type: textarea
32+
id: repro
33+
attributes:
34+
label: How can we reproduce it (as minimally and precisely as possible)?
35+
validations:
36+
required: true
37+
38+
- type: textarea
39+
id: additional
40+
attributes:
41+
label: Anything else we need to know?
42+
43+
- type: textarea
44+
id: osVersion
45+
attributes:
46+
label: OS version
47+
value: |
48+
<details>
49+
50+
```console
51+
# On Linux:
52+
$ cat /etc/os-release
53+
# paste output here
54+
$ uname -a
55+
# paste output here
56+
57+
# On Windows:
58+
C:\> wmic os get Caption, Version, BuildNumber, OSArchitecture
59+
# paste output here
60+
```
61+
62+
</details>

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Support Request
4+
url: https://discord.gg/hyperledger
5+
about: Support request or question relating to Hyperledger Firefly
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Enhancement Tracking Issue
2+
description: Provide supporting details for an enhancement
3+
labels: [enhancement]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
_The more information you share, the faster we can help you._
9+
Prior to opening the issue, please make sure that you:
10+
- Use English (EN/US) to communicate.
11+
- Search the [open issues](https://github.com/hyperledger/firefly/issues) to avoid duplicating the issue.
12+
13+
- type: textarea
14+
id: enhancement
15+
attributes:
16+
label: What would you like to be added?
17+
description: |
18+
A clear and concise description of what you want to happen.
19+
validations:
20+
required: true
21+
22+
- type: textarea
23+
id: rationale
24+
attributes:
25+
label: Why is this needed?
26+
validations:
27+
required: true
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: "Documentation Issue"
2+
description: Issues related to documentation.
3+
title: "docs: "
4+
labels: [documentation]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
_The more information you share, the faster we can help you._
10+
Prior to opening the issue, please make sure that you:
11+
- Use English (EN/US) to communicate.
12+
- Search the [open issues](https://github.com/hyperledger/firefly/issues) to avoid duplicating the issue.
13+
14+
- type: textarea
15+
id: current-state
16+
attributes:
17+
label: Current State
18+
description: Describe the current state of the documentation.
19+
placeholder: |
20+
The documentation for the API in this page (url) is missing ...
21+
validations:
22+
required: true
23+
- type: textarea
24+
id: desired-state
25+
attributes:
26+
label: Desired State
27+
description: Describe the desired state the documentation should be in.
28+
placeholder: |
29+
Add here ...
30+
validations:
31+
required: true

0 commit comments

Comments
 (0)