diff --git a/.github/ISSUE_TEMPLATE/01-bug-report.yml b/.github/ISSUE_TEMPLATE/01-bug-report.yml new file mode 100644 index 00000000..606ece83 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/01-bug-report.yml @@ -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 diff --git a/.github/ISSUE_TEMPLATE/02-feature-request.yml b/.github/ISSUE_TEMPLATE/02-feature-request.yml new file mode 100644 index 00000000..ef630042 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/02-feature-request.yml @@ -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 diff --git a/.github/ISSUE_TEMPLATE/03-documentation.yml b/.github/ISSUE_TEMPLATE/03-documentation.yml new file mode 100644 index 00000000..6e954db9 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/03-documentation.yml @@ -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 diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..ec4bb386 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: false \ No newline at end of file