Skip to content

Commit 106c6dd

Browse files
authored
Add issue templates (#551)
* Create bug.yaml * Create feature.yaml * Create config.yml * Add DAW/host field Also change version from placeholder to value so it is pre-filled * Change OS field from dropdown to input
1 parent b44f993 commit 106c6dd

File tree

3 files changed

+59
-0
lines changed

3 files changed

+59
-0
lines changed

.github/ISSUE_TEMPLATE/bug.yaml

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: Bug Report
2+
description: Report a bug with Cardinal
3+
body:
4+
- type: input
5+
id: version
6+
attributes:
7+
label: Version
8+
value: "23.10"
9+
validations:
10+
required: true
11+
- type: dropdown
12+
id: plugin-type
13+
attributes:
14+
label: Plugin type
15+
multiple: true
16+
options:
17+
- Native
18+
- AU
19+
- CLAP
20+
- LV2
21+
- VST2
22+
- VST3
23+
validations:
24+
required: true
25+
- type: input
26+
id: os
27+
attributes:
28+
label: OS
29+
validations:
30+
required: true
31+
- type: input
32+
id: daw-host
33+
attributes:
34+
label: "DAW / host"
35+
validations:
36+
required: false
37+
- type: textarea
38+
id: bug-description
39+
attributes:
40+
label: Description
41+
validations:
42+
required: true

.github/ISSUE_TEMPLATE/config.yml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Module request
4+
url: https://github.com/DISTRHO/Cardinal/wiki/Possible-modules-to-include
5+
about: To request a new module, add it to the wiki page here
6+
- name: Discussions
7+
url: https://github.com/DISTRHO/Cardinal/discussions
8+
about: Ask other questions or share what you've made with Cardinal

.github/ISSUE_TEMPLATE/feature.yaml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: Feature request
2+
description: Request a new feature
3+
body:
4+
- type: textarea
5+
id: feature-description
6+
attributes:
7+
label: Description
8+
validations:
9+
required: true

0 commit comments

Comments
 (0)