Skip to content

Commit 57e14ac

Browse files
authored
feat : added new issue templates (#1404)
1 parent b50e765 commit 57e14ac

File tree

4 files changed

+110
-73
lines changed

4 files changed

+110
-73
lines changed

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
name: 🐛 Bug report
2+
description: Create a report to help us improve
3+
labels: ["Priority: Medium, Status: Available, Type: Bug"]
4+
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: Before submitting your issue, please make sure you're using the containrrr/watchtower:latest image. If not, switch to this image prior to posting your report. Other forks, or the old `v2tec` image are **not** supported.
9+
10+
- type: textarea
11+
id: description
12+
attributes:
13+
label: Describe the bug
14+
description: A clear and concise description of what the bug is
15+
validations:
16+
required: true
17+
18+
- type: textarea
19+
id: reproduce
20+
attributes:
21+
label: Steps to reproduce
22+
description: Steps to reproduce the behavior
23+
value: |
24+
1. Go to '...'
25+
2. Click on '....'
26+
3. Scroll down to '....'
27+
4. See error
28+
validations:
29+
required: true
30+
31+
- type: textarea
32+
id: expected
33+
attributes:
34+
label: Expected behavior
35+
description: A clear and concise description of what you expected to happen.
36+
validations:
37+
required: true
38+
39+
- type: textarea
40+
id: screenshots
41+
attributes:
42+
label: Screenshots
43+
description: Please add screenshots if applicable
44+
validations:
45+
required: false
46+
47+
- type: textarea
48+
attributes:
49+
label: Environment
50+
description: We would want to know the following things
51+
value: |
52+
- Platform
53+
- Architecture
54+
- Docker Version
55+
validations:
56+
required: true
57+
58+
- type: textarea
59+
attributes:
60+
label: Your logs
61+
description: Paste the Logs from running watchtower with the `--debug` option between the backticks.
62+
value: |
63+
```
64+
65+
```
66+
validations:
67+
required: true
68+
69+
- type: textarea
70+
attributes:
71+
label: Additional context
72+
description: Add any other context about the problem here.
73+
validations:
74+
required: false

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 53 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 20 deletions
This file was deleted.
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: 💡 Feature request
2+
description: Have a new idea/feature ? Please suggest!
3+
labels: ["Priority: Low, Status: Available, Type: Enhancement"]
4+
body:
5+
- type: textarea
6+
id: description
7+
attributes:
8+
label: Is your feature request related to a problem? Please describe.
9+
description: A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
10+
validations:
11+
required: true
12+
13+
- type: textarea
14+
id: solution
15+
attributes:
16+
label: Describe the solution you'd like
17+
description: A clear and concise description of what you want to happen.
18+
validations:
19+
required: true
20+
21+
- type: textarea
22+
id: alternatives
23+
attributes:
24+
label: Describe alternatives you've considered
25+
description: A clear and concise description of any alternative solutions or features you've considered.
26+
validations:
27+
required: true
28+
29+
- type: textarea
30+
id: extrainfo
31+
attributes:
32+
label: Additional context
33+
description: Add any other context or screenshots about the feature request here.
34+
validations:
35+
required: false
36+

0 commit comments

Comments
 (0)