Skip to content

Commit 557e048

Browse files
authored
Add issue templates (#378)
1 parent e9610ba commit 557e048

File tree

4 files changed

+79
-0
lines changed

4 files changed

+79
-0
lines changed
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
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: "Thanks for taking the time to fill out this bug report!"
9+
- type: textarea
10+
attributes:
11+
label: "Description of bug"
12+
description: "Tell us what the bug is, and what you result you had expected"
13+
value: "Replace with description of bug."
14+
validations:
15+
required: true
16+
- type: dropdown
17+
attributes:
18+
label: "What operating system was you using when the bug occured?"
19+
multiple: true
20+
options:
21+
- Ubuntu
22+
- MacOS
23+
- Windows
24+
- Other
25+
validations:
26+
required: false
27+
- type: dropdown
28+
attributes:
29+
label: "What is the architechture of the cpu on your system?"
30+
multiple: true
31+
options:
32+
- X86
33+
- ARM
34+
- Other
35+
validations:
36+
required: false
37+
- type: dropdown
38+
attributes:
39+
label: "What did you build CppInterOp against?"
40+
multiple: true
41+
options:
42+
- Clang-repl (LLVM19)
43+
- Clang-repl (LLVM18)
44+
- Clang-repl (LLVM17)
45+
- Clang-repl (LLVM16)
46+
- Cling 1.0
47+
validations:
48+
required: false
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Feature Request Form
2+
description: Form for requesting a new feature in CppInterOp.
3+
title: "[Feature Request]: "
4+
labels: ["enhancement"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: "Thanks for taking the time to fill out this feature request form!"
9+
- type: textarea
10+
attributes:
11+
label: "Description of new feature"
12+
description: Tell us what the feature is that you would like.
13+
value: "Replace with description of the feature you would like."
14+
validations:
15+
required: true
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Documentation Improvement Form
2+
description: Form for requesting a new feature in CppInterOp.
3+
title: "[Documentation Improvement]: "
4+
labels: ["documentation"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: "Thanks for taking the time to fill out this documenation improvement form!"
9+
- type: textarea
10+
attributes:
11+
label: "Description of issue with documention/Way documentation can be improved"
12+
description: Tell use what the issue with the documentation is, or how it could be improved.
13+
value: "Replace text with description of issue with documentation, or improvement that can be made."
14+
validations:
15+
required: true

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank_issues_enabled: false

0 commit comments

Comments
 (0)