From 1b250902e4c08923d18595da7151a92e737a0be8 Mon Sep 17 00:00:00 2001 From: andoriyaprashant Date: Sun, 1 Oct 2023 13:33:58 +0530 Subject: [PATCH] Issue and pull request template added --- .github/ISSUE_TEMPLATE/bug.yaml | 18 ++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.yml | 19 +++++++++++++++++++ .github/workflows/pull_request_template.md | 21 +++++++++++++++++++++ 3 files changed, 58 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug.yaml create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yml create mode 100644 .github/workflows/pull_request_template.md diff --git a/.github/ISSUE_TEMPLATE/bug.yaml b/.github/ISSUE_TEMPLATE/bug.yaml new file mode 100644 index 000000000..b8c8b4556 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug.yaml @@ -0,0 +1,18 @@ +name: 🐛 Bug +description: Report an issue to help improve the project. +labels: ['bug'] +body: + - type: textarea + id: description + attributes: + label: Description + description: A brief description of the question or issue, also include what you tried and what didn't work + validations: + required: true + - type: textarea + id: screenshots + attributes: + label: Screenshots + description: Please add screenshots if applicable + validations: + required: false \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 000000000..07f7f80c1 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,19 @@ +name: 💡 General Feature Request +description: Have a new idea/feature? Please suggest! +title: 'Feature: ' +labels: ['feature'] +body: + - type: textarea + id: description + attributes: + label: Description + description: Description of the enhancement you propose, also include what you tried and what worked. + validations: + required: true + - type: textarea + id: screenshots + attributes: + label: Screenshots + description: Screenshots if applicable + validations: + required: false \ No newline at end of file diff --git a/.github/workflows/pull_request_template.md b/.github/workflows/pull_request_template.md new file mode 100644 index 000000000..dd7c9d71f --- /dev/null +++ b/.github/workflows/pull_request_template.md @@ -0,0 +1,21 @@ +### Description + + +### Proposed Changes + + +## Fixes #(issue_no) + +Replace `issue_no` with the issue number which is fixed in this PR + +## Screenshots + + + +## Checklist + + +- [ ] Tests have been added or updated to cover the changes +- [ ] Documentation has been updated to reflect the changes +- [ ] Code follows the established coding style guidelines +- [ ] All tests are passing \ No newline at end of file