From 253e5208beafced5054245702cafbb62f396d4be Mon Sep 17 00:00:00 2001 From: zsquare12 Date: Sun, 17 Nov 2024 22:50:15 +0530 Subject: [PATCH 1/3] Add bug report issue template to GitHub this commit adds a bug report issue template to the repository fixes #56 --- .github/ISSUE_TEMPLATE/bug.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug.yml diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml new file mode 100644 index 00000000..ee61f56f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -0,0 +1,24 @@ +name: "🐞 Bug Report" +description: "Create a report to help us improve" +title: "BUG:" +labels: ["Bug"] +body: + - type: checkboxes + 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 + - type: textarea + attributes: + label: "What happened?" + description: "A concise description of what you're experiencing." + validations: + required: true + - type: checkboxes + attributes: + label: "Record" + options: + - label: "I agree to follow this project's Code of Conduct" + required: true \ No newline at end of file From 63161d81d7debb99e385a20cf5fb95a72a52ce4f Mon Sep 17 00:00:00 2001 From: zsquare12 Date: Sun, 17 Nov 2024 22:50:37 +0530 Subject: [PATCH 2/3] Add documentation update issue template to GitHub Added a new issue template for documentation updates to improve consistency and efficiency in reporting documentation-related issues. fixes #56 --- .github/ISSUE_TEMPLATE/documentation.yml | 25 ++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/documentation.yml diff --git a/.github/ISSUE_TEMPLATE/documentation.yml b/.github/ISSUE_TEMPLATE/documentation.yml new file mode 100644 index 00000000..810a3bda --- /dev/null +++ b/.github/ISSUE_TEMPLATE/documentation.yml @@ -0,0 +1,25 @@ +name: "📑 Documentation Update" +description: "Improve Documentation" +title: "DOC:" +labels: [DOC, Needs Triage] +body: + - type: textarea + attributes: + label: "What's wrong with the existing documentation" + description: "Which things do we need to add or delete" + validations: + required: true + - type: textarea + attributes: + label: "Add ScreenShots" + description: "Add sufficient SS to explain your issue." + validations: + required: false + + - type: checkboxes + attributes: + label: "Record" + options: + - label: "I agree to follow this project's Code of Conduct" + required: true + - label: "I want to work on this issue" \ No newline at end of file From d1ca89508b95f25717014ae2574153c6813f9d8c Mon Sep 17 00:00:00 2001 From: zsquare12 Date: Sun, 17 Nov 2024 22:50:54 +0530 Subject: [PATCH 3/3] Add feature request issue template to GitHub This commit adds a new feature request issue template to the GitHub repository. The template will help streamline the process of submitting feature requests, ensuring that all necessary information is provided upfront. This will improve communication between contributors and maintainers, making it easier to track and prioritize new features. The new template is added as `feature.yml`. fixes #56 --- .github/ISSUE_TEMPLATE/feature.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/feature.yml diff --git a/.github/ISSUE_TEMPLATE/feature.yml b/.github/ISSUE_TEMPLATE/feature.yml new file mode 100644 index 00000000..7f2bd018 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature.yml @@ -0,0 +1,24 @@ +name: "✨ Feature Request" +description: "Suggest an idea for this project " +title: "Feat:" +labels: [Feat, Needs Triage] +body: + - type: textarea + attributes: + label: "Describe the feature" + description: "Please describe the feature you would like to see" + validations: + required: true + - type: textarea + attributes: + label: "Add ScreenShots" + description: "Add sufficient SS to explain your issue." + validations: + required: true + - type: checkboxes + attributes: + label: "Record" + options: + - label: "I agree to follow this project's Code of Conduct" + required: true + - label: "I want to work on this issue" \ No newline at end of file