diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2020-10-10 11:39:52 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2020-10-10 12:25:07 +0530 |
commit | 8b86f365525b566ebbf23040ff9d49fc82a93b59 (patch) | |
tree | 0fd568d5c8c0cce2689bfbade781d5d901207ff6 | |
parent | e139e65a6e4d7b87455e512d23fde0d9c8de6035 (diff) |
github: lay down some ground rules in issue templates
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
-rw-r--r-- | .github/ISSUE_TEMPLATE/bug_report.md | 15 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/feature_request.md | 17 |
2 files changed, 27 insertions, 5 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 435cbdcb..a7ef0f2d 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,12 +1,23 @@ --- name: Bug report -about: Create a report to help us improve +about: Create a report to help us address issues you are facing with the app title: "[BUG]" -labels: bug +labels: bug, 'triage: needed' assignees: '' --- +<!-- +Thanks for taking the time to file this issue! Here are a few things to check before clicking the submit button :) + +1. Make sure you're on the latest version of the app. The current release can be found here: https://github.com/android-password-store/android-password-store/releases/latest. + +2. Search through **both** open and closed issues for your bug: https://github.com/android-password-store/Android-Password-Store/issues?q=is%3Aissue+sort%3Aupdated-desc+. + +3. ALWAYS fill this template. If you fail to do so, your issue will be immediately closed with no response. Maintaining open source projects for free is hard work, and we expect users to respect that time and effort by putting in a little bit of their own. That helps us fix these problems faster and in return you get a better app — everybody wins. + +--> + **Describe the bug** A clear and concise description of what the bug is. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index f4558654..66ac7d34 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -1,12 +1,23 @@ --- name: Feature request -about: Suggest an idea for this project +about: Suggest a new feature to be included in the app title: "[FEATURE]" -labels: enhancement -assignees: '' +labels: feature, 'triage: needed' +assignees: 'msfjarvis' --- +<!-- +Thanks for taking the time to file this issue! Here are a few things to check before clicking the submit button :) + +1. Make sure you're on the latest version of the app. Features are being added all the time and it is entirely possible what you're requesting has already been added. The current release can be found here: https://github.com/android-password-store/android-password-store/releases/latest. + +2. Check the changelog file to confirm that the feature hasn't been added for an upcoming release: https://github.com/android-password-store/Android-Password-Store/blob/develop/CHANGELOG.md. + +3. ALWAYS fill this template. If you fail to do so, your issue will be immediately closed with no response. Maintaining open source projects for free is hard work, and we expect users to respect that time and effort by putting in a little bit of their own. A feature request that is clear and explicit in its needs lets us get to work faster. + +--> + **Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] |