From db34f41a9740ee4a23b047eeafd0419c72578852 Mon Sep 17 00:00:00 2001 From: Joel-David Date: Tue, 30 Jul 2024 22:34:31 +0800 Subject: [PATCH] added issue templates --- .github/ISSUE_TEMPLATE/bug.yml | 49 ++++++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 1 + .github/ISSUE_TEMPLATE/feature.yml | 17 +++++++++++ 3 files changed, 67 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug.yml create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/feature.yml diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml new file mode 100644 index 0000000..e257a0f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -0,0 +1,49 @@ +name: 🐛 Bug Report +description: Create a bug report to help us improve +title: 'bug: ' +labels: ["bug"] +body: + - type: input + id: version + attributes: + label: Version + description: Which version of Chronos are you using? + placeholder: "Example: vX.Y" + validations: + required: true + - type: input + id: device + attributes: + label: Device + description: Which device are you using? + placeholder: "Example: iPhone 16" + validations: + required: true + - type: input + id: os_version + attributes: + label: OS + description: Which iOS/iPadOS version is your device on? + placeholder: "Example: iOS vX.Y.Z" + validations: + required: true + - type: textarea + id: description + attributes: + label: Description + description: A clear and concise description of what the bug is. + validations: + required: true + - type: textarea + id: reproduction_steps + attributes: + label: Steps to reproduce + validations: + required: true + - type: textarea + id: additional_info + attributes: + label: Additional information + description: If applicable, list any other relevant information such as stack traces, related issues, etc. + validations: + required: false \ 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..ec4bb38 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: false \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature.yml b/.github/ISSUE_TEMPLATE/feature.yml new file mode 100644 index 0000000..e4735f9 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature.yml @@ -0,0 +1,17 @@ +name: 🚀 Feature Request +description: Request a feature or enhancement. +title: 'feat: <title>' +labels: ['enhancement'] +body: + - type: textarea + attributes: + label: Description + description: A description of what the feature does. + validations: + required: true + - type: textarea + attributes: + label: Motivation + description: What problem does this feature solve? + validations: + required: true