Skip to content

Commit c108049

Browse files
committed
Fix bug template
1 parent 6fa8bf8 commit c108049

File tree

2 files changed

+95
-0
lines changed

2 files changed

+95
-0
lines changed

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
name: Bug Report
2+
description: File a bug report.
3+
title: "[Bug]: "
4+
labels: ["bug"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
If you are reporting a new issue, make sure that we do not have any duplicates
10+
already open. You can ensure this by searching the issue list for this
11+
repository. If there is a duplicate, please close your issue and add a comment
12+
to the existing issue instead.
13+
14+
If you find this useful, please consider starring the repo and/or donating.
15+
People showing interest attract more attention ;)
16+
- type: input
17+
id: version
18+
attributes:
19+
label: Version
20+
description: What version of our software are you running?
21+
placeholder: Output of `docker inspect compiler --format='{{index .Config.Labels.version}}'`
22+
validations:
23+
required: true
24+
- type: textarea
25+
id: what-happened
26+
attributes:
27+
label: What happened?
28+
description: Also tell us, what did you expect to happen?
29+
placeholder: Tell us what you see!
30+
value: |
31+
**Command line I used to start the container**
32+
33+
**Steps to reproduce the issue:**
34+
1.
35+
2.
36+
3.
37+
38+
**Describe the results you received:**
39+
40+
41+
**Describe the results you expected:**
42+
validations:
43+
required: true
44+
- type: textarea
45+
id: logs
46+
attributes:
47+
label: Relevant log output
48+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
49+
render: shell
50+
placeholder: Output of `docker logs compiler`
51+
- type: checkboxes
52+
id: terms
53+
attributes:
54+
label: Code of Conduct
55+
description: By submitting this issue, you ensure the information provided are correctly fulfilled and respectful
56+
options:
57+
- label: I agree
58+
required: true

.github/ISSUE_TEMPLATE/feature.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Feature Request
2+
description: File a feature request.
3+
title: "[Feature]: "
4+
labels: ["feature"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
If you are reporting a new request, make sure that we do not have any duplicates
10+
already open. You can ensure this by searching the issue list for this
11+
repository. If there is a duplicate, please close your request and add a comment
12+
to the existing request instead.
13+
14+
If you find this useful, please consider starring the repo and/or donating.
15+
People showing interest attract more attention ;)
16+
- type: textarea
17+
id: details
18+
attributes:
19+
label: What do you need?
20+
description: What do you expect to happen?
21+
placeholder: This feature would be awesome
22+
validations:
23+
required: true
24+
- type: textarea
25+
id: why
26+
attributes:
27+
label: Why this feature should be part of this program
28+
description: Detail your motivation why this should be implemented in this app.
29+
placeholder: It is really relevant because...
30+
- type: checkboxes
31+
id: terms
32+
attributes:
33+
label: Code of Conduct
34+
description: By submitting this issue, you ensure the information provided are correctly fulfilled and respectful
35+
options:
36+
- label: I agree
37+
required: true

0 commit comments

Comments
 (0)