From 7f67108b936d3d11b2ff6f240931bfa32217cc9d Mon Sep 17 00:00:00 2001 From: JHubi1 Date: Tue, 6 Aug 2024 10:36:06 +0200 Subject: [PATCH] Added issue templates --- .github/ISSUE_TEMPLATE/bug.yaml | 54 +++++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 8 +++++ .github/ISSUE_TEMPLATE/feature.yaml | 32 +++++++++++++++++ 3 files changed, 94 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug.yaml create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/feature.yaml diff --git a/.github/ISSUE_TEMPLATE/bug.yaml b/.github/ISSUE_TEMPLATE/bug.yaml new file mode 100644 index 0000000..9e43b03 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug.yaml @@ -0,0 +1,54 @@ +name: Bug Report +description: Report a bug in the app. +assignees: ["JHubi1"] +labels: ["bug"] +body: + - type: checkboxes + attributes: + label: "Requirements" + description: "Please check all the following requirements before submitting a bug report." + options: + - label: I have searched the issues of this repository and believe that this is not a duplicate + required: true + - label: I have confirmed this bug exists on the latest version of the app + required: true + - type: input + attributes: + label: "Platform" + description: "The platforms on which the bug occurs, separated by commas. Use `*` if all platforms are affected.\nAvailable platforms: Android, Windows" + placeholder: "Android, Windows" + value: "*" + validations: + required: true + - type: input + attributes: + label: "Description" + description: "A short description of what the bug is." + placeholder: "I was trying to do X, but Y happened instead." + validations: + required: true + - type: textarea + attributes: + label: "Steps to reproduce" + description: "Detailed steps for reproducing the issue." + placeholder: "1. Go to '...' 2. Click on '....' 3. Scroll down to '....' 4. See error" + validations: + required: true + - type: textarea + attributes: + label: "Expected behavior" + description: "A clear and concise description of what you expected to happen." + placeholder: "I expected to see..." + validations: + required: true + - type: textarea + attributes: + label: "Actual behavior" + description: "A clear and concise description of what actually happened." + placeholder: "Instead, I saw..." + validations: + required: true + - type: textarea + attributes: + label: "Screenshots or additional context" + description: "If applicable, add screenshots to help explain your problem." \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..8ff9bbf --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,8 @@ +blank_issues_enabled: false +contact_links: + - name: Contact Author + url: https://jhubi1.com/mailto + about: Report security concerns or ask general questions. + - name: Translations + url: https://crowdin.com/project/ollama-app + about: Help translate the app into your language. diff --git a/.github/ISSUE_TEMPLATE/feature.yaml b/.github/ISSUE_TEMPLATE/feature.yaml new file mode 100644 index 0000000..c0be8c6 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature.yaml @@ -0,0 +1,32 @@ +name: Feature Request +description: Suggest a new feature or improvement for the app. +assignees: ["JHubi1"] +labels: ["enhancement"] +body: + - type: checkboxes + attributes: + label: "Requirements" + description: "Please check all the following requirements before submitting a feature request." + options: + - label: I have searched the issues of this repository and believe that this is not a duplicate + required: true + - label: I can confirm this feature request is not already implemented in the app + required: true + - type: textarea + attributes: + label: "Description" + description: "A description of the feature you are proposing." + placeholder: "I would like to see..." + validations: + required: true + - type: textarea + attributes: + label: "Possible solution" + description: "Suggestions on how to implement the feature." + placeholder: "It would be great if..." + validations: + required: true + - type: textarea + attributes: + label: "Additional context" + description: "Add any other context, screenshots or possible concepts about the feature request here." \ No newline at end of file