diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index c7f67e7d..00000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: "[BUG] My Bug Title" -labels: bug -assignees: blackxfiied - ---- - -**Describe the bug** -A clear and concise description of what the bug is. - -**To Reproduce** -Steps to reproduce the behavior: -1. Go to '...' -2. Click on '....' -3. See error - -**Expected behavior** -A clear and concise description of what you expected to happen. - -**Screenshots** -If applicable, add screenshots to help explain your problem. - -**Mac (please complete the following information):** -Model: [e.g. MacBook Air] -Operating System: [e.g. macOS Sonoma 14.1.1] -App Version: - -**Additional context** -Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 00000000..b0f27ba8 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,60 @@ +name: "Bug report" +description: Report an issue regarding Mythic. +title: "[bug]: " +labels: ["bug"] +body: + - type: markdown + attributes: + value: | + ### Thanks for taking the time to create a bug report. Please search existing issues before submitting, as the issue may have already been addressed. + + - type: textarea + id: bug-description + attributes: + label: Describe the bug + description: A clear and concise description of what the bug is. If you intend to submit a PR for this issue, describe how in the description. + placeholder: Description of happened and what you expected to happen. + validations: + required: true + + - type: textarea + id: reproduction + attributes: + label: How to reproduce + description: A step-by-step description of how to reproduce the bug. + placeholder: | + 1. Go to '...' + 2. Click on '....' + 3. See error + validations: + required: true + + - type: input + id: system-information + attributes: + label: Mac & App Information + description: Help us understand the environment of the bug by providing information about your system and the app. + placeholder: | + - Model: MacBook Air M2 16gb + - OS: macOS Sonoma 14.5 + - App Version: 0.3.0 + validations: + required: false + + - type: textarea + id: logs + attributes: + label: Logs + description: "If applicable, provide logs that may help us understand the issue." + render: bash + + - type: checkboxes + id: terms + attributes: + label: Before submitting + description: By submitting this issue, you confirm you did the following things. + options: + - label: I've made research efforts + required: true + - label: I've searched for existing issues + required: true diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..d0c441c9 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,8 @@ +blank_issues_enabled: false +contact_links: + - name: View documentation + url: https://docs.getmythic.app/ + about: If you're looking for documentation on how to use Mythic, check out our documentation. + - name: Get Help on Discord + url: https://discord.gg/qbc32gtZDt + about: If you can't get something to work or just want to chat, join our Discord server. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index 5223d11f..00000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for this project -title: "[Feature] My Feature Request" -labels: enhancement -assignees: blackxfiied - ---- - -**Is your feature request related to a problem? Please describe.** -A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] - -**Describe the solution you'd like** -A clear and concise description of what you want to happen. - -**Describe alternatives you've considered** -A clear and concise description of any alternative solutions or features you've considered. - -**Additional context** -Add any other context or screenshots about the feature request here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 00000000..e8d8adb3 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,30 @@ +name: "Feature request" +description: Create a feature request for Mythic. +title: "[feat]: " +labels: ["enhancement"] +body: + - type: markdown + attributes: + value: | + ### Thanks for taking the time to create a feature request! Please search existing issues before submitting, as the issue may have already been addressed. + + - type: textarea + id: feature-description + attributes: + label: Feature description + description: Tell us about your feature request + placeholder: "I think this feature would be nice to have because..." + value: "Describe your feature request..." + validations: + required: true + + - type: checkboxes + id: terms + attributes: + label: Before submitting + description: By submitting this request, you confirm you did the following things. + options: + - label: I've made research efforts and searched the documentation + required: true + - label: I've searched for existing issues and PRs + required: true