From 1898fc560be828c3a1a58f7b1208adf64ca9a7d9 Mon Sep 17 00:00:00 2001 From: N3v1 Date: Sun, 18 Feb 2024 21:07:20 +0100 Subject: [PATCH] [Chore]: add issue templates --- .github/ISSUE_TEMPLATES/bug_report.yml | 73 +++++++++++++++++++++ .github/ISSUE_TEMPLATES/config.yml | 8 +++ .github/ISSUE_TEMPLATES/feature_request.yml | 43 ++++++++++++ .github/ISSUE_TEMPLATES/question.yml | 42 ++++++++++++ 4 files changed, 166 insertions(+) create mode 100644 .github/ISSUE_TEMPLATES/bug_report.yml create mode 100644 .github/ISSUE_TEMPLATES/config.yml create mode 100644 .github/ISSUE_TEMPLATES/feature_request.yml create mode 100644 .github/ISSUE_TEMPLATES/question.yml diff --git a/.github/ISSUE_TEMPLATES/bug_report.yml b/.github/ISSUE_TEMPLATES/bug_report.yml new file mode 100644 index 0000000..4e1bf43 --- /dev/null +++ b/.github/ISSUE_TEMPLATES/bug_report.yml @@ -0,0 +1,73 @@ +name: 🔴 Bug report +description: Something is not working as expected. +title: "[BUG]: {description}" +labels: + - "type: bug" + - "needs review" + +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report!!! + - type: textarea + attributes: + label: Description + placeholder: >- + A clear and concise description of what the bug is... + validations: + required: true + + - type: textarea + attributes: + label: Version + placeholder: >- + Please tell us which version you're using. Follow our Guide under Settings -> Info and Settings -> Help + - SLAvatarKit version [e.g. 1.0.0] + - iOS version [e.g. 17.0.3] + - iPadOS version [e.g. 17.0.3] + - macOS version [e.g. 14.0] + validations: + required: true + + - type: textarea + attributes: + label: To Reproduce + description: >- + Steps to reliably reproduce the behavior. + placeholder: | + 1. Go to '...' + 2. Click on '....' + 3. Scroll down to '....' + 4. See error + validations: + required: true + + - type: textarea + attributes: + label: Expected Behavior + placeholder: >- + A clear and concise description of what you expected to happen... + validations: + required: true + + - type: textarea + attributes: + label: Additional Context + placeholder: >- + Any other context or considerations about the bug... + + - type: textarea + attributes: + label: Screenshots + placeholder: >- + If applicable, please provide relevant screenshots or screen recordings... + + - type: checkboxes + id: new-bug + attributes: + label: Is there an existing issue for this? + description: Please search to see if an issue already exists for the bug you encountered. + options: + - label: I have searched the existing issues + required: true \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATES/config.yml b/.github/ISSUE_TEMPLATES/config.yml new file mode 100644 index 0000000..1126903 --- /dev/null +++ b/.github/ISSUE_TEMPLATES/config.yml @@ -0,0 +1,8 @@ +blank_issues_enabled: true +contact_links: + - name: ScribbleLab Comunity + url: https://discord.gg/Y9SmAGfJMR + about: Please ask and answer questions here. + - name: ScribbleLabApp support + email: n3v1010@gmail.com + about: support email \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATES/feature_request.yml b/.github/ISSUE_TEMPLATES/feature_request.yml new file mode 100644 index 0000000..503940f --- /dev/null +++ b/.github/ISSUE_TEMPLATES/feature_request.yml @@ -0,0 +1,43 @@ +name: ✨ Feature request +description: Suggest an idea for this project +title: "[Feature]: {description}" +labels: + - "type: feature" + - "needs review" + - "help wanted" + +body: + - type: textarea + attributes: + label: Description + placeholder: >- + A clear and concise description of what you would like to happen... + validations: + required: true + + - type: textarea + attributes: + label: Alternatives Considered + placeholder: >- + Any alternative solutions or features you've considered... + + - type: textarea + attributes: + label: Additional Context + placeholder: >- + Any other context or considerations about the feature request... + + - type: textarea + attributes: + label: Screenshots + placeholder: >- + If applicable, please provide relevant screenshots or screen recordings... + + - type: checkboxes + id: new-bug + attributes: + label: Is there an existing issue for this? + description: Please search to see if an issue already exists for the feature you encountered. + options: + - label: I have searched the existing issues + required: true \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATES/question.yml b/.github/ISSUE_TEMPLATES/question.yml new file mode 100644 index 0000000..8bf3830 --- /dev/null +++ b/.github/ISSUE_TEMPLATES/question.yml @@ -0,0 +1,42 @@ +name: 🙋 Question +description: Questions about this project +title: "[Question]: {description}" +labels: "type: question" + +body: + - type: textarea + attributes: + label: Description + placeholder: >- + A clear and concise description of what you would like to ask... + validations: + required: true + + - type: textarea + attributes: + label: What can we do? + placeholder: >- + Any alternative solutions or features you've considered... + validations: + required: true + + - type: textarea + attributes: + label: Additional Context + placeholder: >- + Any other context or considerations about this question... + + - type: textarea + attributes: + label: Screenshots + placeholder: >- + If applicable, please provide relevant screenshots or screen recordings... + + - type: checkboxes + id: new-question + attributes: + label: Is there an existing issue for this? + description: Please search to see if an issue already exists for the feature you encountered. + options: + - label: I have searched the existing issues + required: true \ No newline at end of file