Skip to content

Commit bf85e64

Browse files
committed
update issue templates
- switch to yml files with separate input field - make use of new issue types
1 parent 5fa40e3 commit bf85e64

File tree

4 files changed

+98
-49
lines changed

4 files changed

+98
-49
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

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

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
name: Bug report
2+
description: Create a report to help us improve
3+
type: Bug
4+
assignees:
5+
- sephiroth-j
6+
body:
7+
- type: textarea
8+
attributes:
9+
label: Describe the bug
10+
description: A clear and concise description of what the bug is.
11+
validations:
12+
required: true
13+
14+
- type: input
15+
attributes:
16+
label: Plugin Version
17+
validations:
18+
required: true
19+
20+
- type: input
21+
attributes:
22+
label: Jenkins Version
23+
validations:
24+
required: true
25+
26+
- type: input
27+
attributes:
28+
label: Java Version for Jenkins
29+
validations:
30+
required: true
31+
32+
- type: dropdown
33+
attributes:
34+
label: Type of Jenkins Job
35+
options:
36+
- classic (I use the ui to configure the job)
37+
- declarative pipeline
38+
- scripted pipeline
39+
validations:
40+
required: true
41+
42+
- type: input
43+
attributes:
44+
label: Dependency-Track Version
45+
validations:
46+
required: true
47+
48+
- type: textarea
49+
attributes:
50+
label: Steps to reproduce the behavior
51+
description: A clear and concise description of what the bug is.
52+
placeholder: |
53+
1. Go to '...'
54+
2. Click on '....'
55+
3. Scroll down to '....'
56+
4. See error
57+
validations:
58+
required: true
59+
60+
- type: textarea
61+
attributes:
62+
label: Expected behavior
63+
description: A clear and concise description of what you expected to happen.
64+
validations:
65+
required: true
66+
67+
- type: textarea
68+
attributes:
69+
label: Additional context
70+
description: Add any other context about the problem here (screenshots, logs, etc.).
71+
validations:
72+
required: false

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 17 deletions
This file was deleted.
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Feature request
2+
description: Suggest an idea for this project
3+
type: Enhancement
4+
assignees:
5+
- sephiroth-j
6+
body:
7+
- type: textarea
8+
attributes:
9+
label: What is your feature request about?
10+
description: A clear and concise description of the feature request.
11+
validations:
12+
required: true
13+
14+
- type: textarea
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+
attributes:
23+
label: Additional context
24+
description: Add any other context or screenshots about the feature request here.
25+
validations:
26+
required: false

0 commit comments

Comments
 (0)