From 0e9a0c2e6cfea2848ca22e928ba9896834f2e466 Mon Sep 17 00:00:00 2001 From: Denish Tomar Date: Sun, 6 Oct 2024 15:47:40 +0530 Subject: [PATCH] Add PR Template and General Issue Template for Issue #179 --- .github/ISSUE_TEMPLATE/general-issue.md | 24 ++++++++++++++++++ .github/PULL_REQUEST_TEMPLATE.md | 33 +++++++++++++++++++++++++ 2 files changed, 57 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/general-issue.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/ISSUE_TEMPLATE/general-issue.md b/.github/ISSUE_TEMPLATE/general-issue.md new file mode 100644 index 00000000..966e9be7 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/general-issue.md @@ -0,0 +1,24 @@ +--- +name: General Issue +about: Use this template for reporting issues that don't fit into bug reports or feature requests. +title: "[General Issue] - " +labels: "question, discussion" +assignees: "" +--- + +## General Issue + +### Description + + +### Expected Behavior + + +### Actual Behavior + + +### Steps to Reproduce + + +### Additional Information + \ No newline at end of file diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 00000000..25cd14d2 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,33 @@ +## Pull Request Template + +### Description + + +- **What changes are being made?** + - + +- **Why are these changes necessary?** + - + +- **Which issues or tickets does this PR close or relate to?** + - Related issue: # + +### Type of Change + +- [ ] Bug fix (non-breaking change which fixes an issue) +- [ ] New feature (non-breaking change which adds functionality) +- [ ] Breaking change (fix or feature that would cause existing functionality to change) +- [ ] Documentation update +- [ ] Other (please specify): + +### Checklist +- [ ] Code has been linted. +- [ ] Documentation has been updated (if needed). +- [ ] Tests have been added or updated (if needed). +- [ ] Any breaking changes have been communicated to the team. + +### Screenshots or Recordings (if applicable) + + +### Additional Information + \ No newline at end of file