From 00c1130814a3ee3a473bba61dc27f55d72b994c6 Mon Sep 17 00:00:00 2001 From: Quinn Bast Date: Tue, 21 Apr 2020 16:57:45 -0600 Subject: [PATCH 1/3] Update issue templates --- .github/ISSUE_TEMPLATE/bug_report.md | 56 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 22 +++++++++ 2 files changed, 78 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 00000000..53f4eea5 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,56 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: bug +assignees: QuinnBast + +--- + + + + + +## Expected Behavior + + +## Current Behavior + + +## Failure Information + + + +## Possible Solution + + +## Steps to Reproduce + + + +1. +2. +3. +4. + +## Context (Environment) + + + +* Device: +* Operating System: +* App Version: + + +## Detailed Description + diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 00000000..873ad076 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,22 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: enhancement +assignees: QuinnBast + +--- + +## Enhancement Description + + +## Solution + From c04143eeff8ce457d33bf7ac91d39a608edbc280 Mon Sep 17 00:00:00 2001 From: Quinn Bast Date: Tue, 21 Apr 2020 16:59:43 -0600 Subject: [PATCH 2/3] added pull request tempalte --- .github/PULL_REQUEST_TEMPLATE.md | 58 ++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 00000000..537a1436 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,58 @@ +# Description + + + +# Type of change + + + +### CLI +- [ ] 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 not work as expected) +- [ ] This change requires a documentation update +- [ ] New dependencies/packages + +### Core +- [ ] 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 not work as expected) +- [ ] This change requires a documentation update +- [ ] New dependencies/packages + +# Testing + + + +- [ ] I have created automated tests for any new features +- [ ] All automated tests pass +- [ ] I have performed manual tests + + +# Checklist: + + + + +- [ ] I have performed a self-review of my own code +- [ ] I have commented my code according to C# standards +- [ ] I have made corresponding changes to the README (if required) +- [ ] I have added/updated articles in the documentation +- [ ] My changes generate no new warnings + + + +# Questions / Discussion + + \ No newline at end of file From ff15847f3a37cf87c5a435c5c6c612b3d0b2e6de Mon Sep 17 00:00:00 2001 From: Quinn Bast Date: Tue, 21 Apr 2020 17:01:21 -0600 Subject: [PATCH 3/3] added versioning section --- .github/PULL_REQUEST_TEMPLATE.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 537a1436..b0c8a36f 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -8,6 +8,14 @@ Be as detailed as possible and be sure to indicate how this change will effect d Also list any new dependencies/packages that are required for this change. --> +# Versioning + +Previous Version: +Next Version Number: + + - [ ] I have updated the README to reflect the new version number + - [ ] When I publish a release I will append the version number to the dll's name + # Type of change