From c783c625c51a555f7fd6018c7af1b8581d8cfb73 Mon Sep 17 00:00:00 2001 From: Yash Khare Date: Mon, 24 Aug 2020 10:03:34 +0530 Subject: [PATCH] Fix #178 Add issue annd PR templates --- .github/ISSUE_TEMPLATE/bug_report.md | 33 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/chore.md | 11 ++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 17 ++++++++++++ .github/PULL_REQUEST_TEMPLATE.md | 12 +++++++++ 4 files changed, 73 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/chore.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..dff7225 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,33 @@ +--- +name: Bug report +about: Create a bug report to help us improve + +--- + +**Describe the bug** + + +**To Reproduce** + + +**Expected behavior** + + +**Logs** + + +**Screenshots** + + +**Smartphone Info:** + +| | | +|---------------|---| +|Device || +|Android Version| | + +**Additional context** + + +**Would you like to work on the issue?** + diff --git a/.github/ISSUE_TEMPLATE/chore.md b/.github/ISSUE_TEMPLATE/chore.md new file mode 100644 index 0000000..6d830a9 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/chore.md @@ -0,0 +1,11 @@ +--- +name: Chore +about: Issues related to docs, workflow, dependency and others + +--- + +**Describe the chore** + + +**Would you like to work on the issue?** + diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..ccd2052 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,17 @@ +--- +name: Feature request +about: Suggest a feature for this project + +--- + +**Describe the feature you'd like** + + +**Screenshots** + + +**Additional context** + + +**Would you like to work on the issue?** + diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..7def566 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,12 @@ + +Fixes #[Add issue number here. If you solve the issue entirely, else please change the message e.g. "First steps or Part of for issues #IssueNumber] + +Changes: [Add here what changes were made in this issue and if possible provide links.] + +Screenshots for the change: + +Please make sure these boxes are checked before submitting your pull request - thanks! + +- [ ] Run `./gradlew spotlessCheck` to ensure the code formatting is maintained. + +- [ ] Run the unit tests with `./gradlew check` to make sure you didn't break anything