-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
79 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: Bug Report | ||
description: File a bug report. | ||
title: "[Bug]: " | ||
labels: ["bug"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: "Thanks for taking the time to fill out this bug report!" | ||
- type: textarea | ||
attributes: | ||
label: "Description of bug" | ||
description: "Tell us what the bug is, and what you result you had expected" | ||
value: "Replace with description of bug." | ||
validations: | ||
required: true | ||
- type: dropdown | ||
attributes: | ||
label: "What operating system was you using when the bug occured?" | ||
multiple: true | ||
options: | ||
- Ubuntu | ||
- MacOS | ||
- Windows | ||
- Other | ||
validations: | ||
required: false | ||
- type: dropdown | ||
attributes: | ||
label: "What is the architechture of the cpu on your system?" | ||
multiple: true | ||
options: | ||
- X86 | ||
- ARM | ||
- Other | ||
validations: | ||
required: false | ||
- type: dropdown | ||
attributes: | ||
label: "What did you build CppInterOp against?" | ||
multiple: true | ||
options: | ||
- Clang-repl (LLVM19) | ||
- Clang-repl (LLVM18) | ||
- Clang-repl (LLVM17) | ||
- Clang-repl (LLVM16) | ||
- Cling 1.0 | ||
validations: | ||
required: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: Feature Request Form | ||
description: Form for requesting a new feature in CppInterOp. | ||
title: "[Feature Request]: " | ||
labels: ["enhancement"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: "Thanks for taking the time to fill out this feature request form!" | ||
- type: textarea | ||
attributes: | ||
label: "Description of new feature" | ||
description: Tell us what the feature is that you would like. | ||
value: "Replace with description of the feature you would like." | ||
validations: | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: Documentation Improvement Form | ||
description: Form for requesting a new feature in CppInterOp. | ||
title: "[Documentation Improvement]: " | ||
labels: ["documentation"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: "Thanks for taking the time to fill out this documenation improvement form!" | ||
- type: textarea | ||
attributes: | ||
label: "Description of issue with documention/Way documentation can be improved" | ||
description: Tell use what the issue with the documentation is, or how it could be improved. | ||
value: "Replace text with description of issue with documentation, or improvement that can be made." | ||
validations: | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
blank_issues_enabled: false |