From 7c4928104dada083b5f2d7287439a63a306d73ff Mon Sep 17 00:00:00 2001 From: Kenneth Sellers Date: Thu, 20 Jan 2022 14:36:13 -0600 Subject: [PATCH 1/2] Adding template for bug and Pull Request. --- .github/ISSUE_TEMPLATE/bug.yml | 45 ++++++++++++++++++++++++++++++++ .github/pull_request_template.md | 9 +++++++ 2 files changed, 54 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug.yml create mode 100644 .github/pull_request_template.md diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml new file mode 100644 index 0000000..d020aa7 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -0,0 +1,45 @@ +name: 🐛 Bug +description: File a bug/issue +title: "" +labels: [Bug, Needs Triage] +body: +- type: textarea + attributes: + label: Description + description: | + A clear description of what you're experiencing. + TIP: You can attach images or log files by clicking this area to highlight it and then dragging files in. + validations: + required: false +- type: textarea + attributes: + label: Expected Behavior + description: A clear description of what you expected to happen. + validations: + required: false +- type: textarea + attributes: + label: Steps To Reproduce + description: Steps to reproduce the behavior. + placeholder: | + 1. In this environment... + 2. With this config... + 3. Run '...' + 4. See error... + validations: + required: false +- type: textarea + attributes: + label: Environment + description: | + examples: + - **OS**: Windows 11 + - **Version**: 1.0.0 + - **Framework**: .NET 4.8 + value: | + - OS: + - Version: + - Framework: + render: markdown + validations: + required: false \ 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 0000000..9d4a8cb --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,9 @@ +<!-- link your pull request to an open issue --> +Fixes: + +## Description +<!-- Describe your change in a 1-5 sentences --> + +## Merge Checklist +- [ ] Added unit or integration tests (if not explain) +- [ ] Benchmarks are equivalent or faster \ No newline at end of file From f2cdcb569422c8392954ecb3689caeb56d89f8cc Mon Sep 17 00:00:00 2001 From: Kenneth Sellers <ksellers@iowacomputergurus.com> Date: Thu, 20 Jan 2022 14:38:04 -0600 Subject: [PATCH 2/2] Final bug template changes --- .github/ISSUE_TEMPLATE/bug.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index d020aa7..e44e045 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -8,6 +8,7 @@ body: label: Description description: | A clear description of what you're experiencing. + TIP: You can attach images or log files by clicking this area to highlight it and then dragging files in. validations: required: false