From 67e4076730459605a2a500db4a297c500d42819b Mon Sep 17 00:00:00 2001 From: Charles <46334090+charlestian23@users.noreply.github.com> Date: Tue, 26 Jul 2022 10:58:04 -0400 Subject: [PATCH 01/23] Update issue templates --- .github/ISSUE_TEMPLATE/bug_report.md | 30 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 20 +++++++++++++++ 2 files changed, 50 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 000000000..0a7e1a210 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,30 @@ +--- +name: Bug report +about: Create a report to help us improve +title: "[ISSUE] " +labels: bug +assignees: '' + +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior: +1. Go to '...' +2. Click on '....' +3. Scroll down to '....' +4. See error + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Files** +If applicable, add any puzzle files that demonstrate your problem. + +**Additional context** +Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 000000000..14da3297f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,20 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: "[FEATURE]" +labels: enhancement, new feature +assignees: '' + +--- + +**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 [...] + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. + +**Additional context** +Add any other context or screenshots about the feature request here. From 809377dac7d3dddcb758dc07ba6c77784b93791d Mon Sep 17 00:00:00 2001 From: Charles <46334090+charlestian23@users.noreply.github.com> Date: Tue, 26 Jul 2022 11:15:46 -0400 Subject: [PATCH 02/23] Create pull_request_template.md --- .../pull_request_template.md | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE/pull_request_template.md diff --git a/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md b/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md new file mode 100644 index 000000000..23d61e3e8 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md @@ -0,0 +1,28 @@ +# Description + + + + +Closes #(issue) + +## Type of change + +- [ ] Bug fix (non-breaking change which fixes an issue) +- [ ] New feature (non-breaking change which adds functionality) +- [ ] Enhancement (improvement to an already existing feature) +- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) +- [ ] This change requires a documentation update + +# How Has This Been Tested? + + + +# Checklist: + +- [ ] My code follows the style guidelines of this project +- [ ] I have performed a self-review of my code +- [ ] I have commented my code, particularly in hard-to-understand areas +- [ ] I have made corresponding changes to the documentation +- [ ] My changes generate no new warnings +- [ ] I have added tests that prove my fix is effective or that my feature works +- [ ] New and existing unit tests pass locally with my changes From d965f3f1b740088ce7c5f3c0d10ca3b057153730 Mon Sep 17 00:00:00 2001 From: Charles <46334090+charlestian23@users.noreply.github.com> Date: Tue, 26 Jul 2022 11:19:07 -0400 Subject: [PATCH 03/23] Rename bug_report.md to bug_report.yml --- .github/ISSUE_TEMPLATE/{bug_report.md => bug_report.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/ISSUE_TEMPLATE/{bug_report.md => bug_report.yml} (100%) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.yml similarity index 100% rename from .github/ISSUE_TEMPLATE/bug_report.md rename to .github/ISSUE_TEMPLATE/bug_report.yml From a5ae6fdc5fda2c97d9633fcfb924c7bb453cbbf1 Mon Sep 17 00:00:00 2001 From: Charles <46334090+charlestian23@users.noreply.github.com> Date: Tue, 26 Jul 2022 11:20:53 -0400 Subject: [PATCH 04/23] Update bug_report.yml --- .github/ISSUE_TEMPLATE/bug_report.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 0a7e1a210..dbe00c8e5 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,9 +1,8 @@ --- name: Bug report -about: Create a report to help us improve +description: Create a report to help us improve title: "[ISSUE] " labels: bug -assignees: '' --- From 7d3328b53185b26ef323de71f32e798e9050900d Mon Sep 17 00:00:00 2001 From: Charles <46334090+charlestian23@users.noreply.github.com> Date: Tue, 26 Jul 2022 11:31:58 -0400 Subject: [PATCH 05/23] Update bug_report.yml --- .github/ISSUE_TEMPLATE/bug_report.yml | 78 +++++++++++++++++++-------- 1 file changed, 55 insertions(+), 23 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index dbe00c8e5..fa2bf29f3 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,29 +1,61 @@ --- name: Bug report description: Create a report to help us improve -title: "[ISSUE] " +title: "[BUG] " labels: bug --- - -**Describe the bug** -A clear and concise description of what the bug is. - -**To Reproduce** -Steps to reproduce the behavior: -1. Go to '...' -2. Click on '....' -3. Scroll down to '....' -4. See error - -**Expected behavior** -A clear and concise description of what you expected to happen. - -**Screenshots** -If applicable, add screenshots to help explain your problem. - -**Files** -If applicable, add any puzzle files that demonstrate your problem. - -**Additional context** -Add any other context about the problem here. +body: + - type: textarea + id: description + attributes: + label: "Describe the bug" + description: "A clear and concise description of what the bug is." + placeholder: "If your issue relates to a particular puzzle, make sure to remember to add the corresponding label to the issue." + validations: + required: true + - type: textarea + id: reproduce + attributes: + label: "To Reproduce" + description: "Steps to reproduce the behavior:" + value: | + 1. Go to '...' + 2. Click on '....' + 3. Scroll down to '....' + 4. See error + render: bash + validations: + required: true + - type: textarea + id: expected_behavior + attributes: + label: "Expected behavior" + description: "A clear and concise description of what you expected to happen." + validations: + required: true + - type: textarea: + id: screenshot + attributes: + label: "Screenshots" + description: "If applicable, add screenshots to help explain your problem." + value: | + ![DESCRIPTION](LINK.png) + render: bash + validations: + required: false + - type: textarea + id: files + attributes: + label: "Puzzle Files" + description: "If applicable, add any puzzle files to help explain your problem." + placeholder: You will need to zip up the puzzle files before you can attach them to your issue. + validations: + required: false + - type: textarea + id: additional_context + attributes: + label: "Additional Context" + description: "Add any other context about the problem here." + validations: + required: false From b9409037899b1eec4bd25eb401dfa394b062771a Mon Sep 17 00:00:00 2001 From: Charles <46334090+charlestian23@users.noreply.github.com> Date: Tue, 26 Jul 2022 11:33:01 -0400 Subject: [PATCH 06/23] Update bug_report.yml --- .github/ISSUE_TEMPLATE/bug_report.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index fa2bf29f3..279bd8a21 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,10 +1,7 @@ ---- name: Bug report description: Create a report to help us improve title: "[BUG] " labels: bug - ---- body: - type: textarea id: description From c44e1739d6d847db1f7607f232b02c9c05fce6b6 Mon Sep 17 00:00:00 2001 From: Charles <46334090+charlestian23@users.noreply.github.com> Date: Tue, 26 Jul 2022 11:35:08 -0400 Subject: [PATCH 07/23] Update bug_report.yml --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 279bd8a21..f2a2b7709 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,7 +1,7 @@ name: Bug report description: Create a report to help us improve title: "[BUG] " -labels: bug +labels: [bug] body: - type: textarea id: description From 9d25963a5f4e4a7fadb8771c416aca8b69a87cc3 Mon Sep 17 00:00:00 2001 From: Charles <46334090+charlestian23@users.noreply.github.com> Date: Tue, 26 Jul 2022 11:36:23 -0400 Subject: [PATCH 08/23] Update bug_report.yml --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index f2a2b7709..66e980c91 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -22,7 +22,7 @@ body: 3. Scroll down to '....' 4. See error render: bash - validations: + validations: required: true - type: textarea id: expected_behavior From c2d1755359cb6ec5bd694671e7e782d609582b44 Mon Sep 17 00:00:00 2001 From: Charles <46334090+charlestian23@users.noreply.github.com> Date: Tue, 26 Jul 2022 11:37:03 -0400 Subject: [PATCH 09/23] Update bug_report.yml --- .github/ISSUE_TEMPLATE/bug_report.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 66e980c91..093d276a0 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -39,7 +39,7 @@ body: value: | ![DESCRIPTION](LINK.png) render: bash - validations: + validations: required: false - type: textarea id: files @@ -47,12 +47,12 @@ body: label: "Puzzle Files" description: "If applicable, add any puzzle files to help explain your problem." placeholder: You will need to zip up the puzzle files before you can attach them to your issue. - validations: + validations: required: false - type: textarea id: additional_context attributes: label: "Additional Context" description: "Add any other context about the problem here." - validations: + validations: required: false From 667be487d4920c3e4d1fa534a9a295b5e57b224f Mon Sep 17 00:00:00 2001 From: Charles <46334090+charlestian23@users.noreply.github.com> Date: Tue, 26 Jul 2022 11:37:25 -0400 Subject: [PATCH 10/23] Update bug_report.yml --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 093d276a0..674f6a7d7 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -31,7 +31,7 @@ body: description: "A clear and concise description of what you expected to happen." validations: required: true - - type: textarea: + - type: textarea id: screenshot attributes: label: "Screenshots" From 815407d647607d0cba44bda49c97ada8a5a9a773 Mon Sep 17 00:00:00 2001 From: Charles <46334090+charlestian23@users.noreply.github.com> Date: Tue, 26 Jul 2022 11:37:54 -0400 Subject: [PATCH 11/23] Update bug_report.yml --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 674f6a7d7..fcde5e687 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -39,7 +39,7 @@ body: value: | ![DESCRIPTION](LINK.png) render: bash - validations: + validations: required: false - type: textarea id: files From 7f52cc22b38bb4df63d02ad6bf5380c13c9f00b9 Mon Sep 17 00:00:00 2001 From: Charles <46334090+charlestian23@users.noreply.github.com> Date: Tue, 26 Jul 2022 11:38:16 -0400 Subject: [PATCH 12/23] Update bug_report.yml --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index fcde5e687..0b7f6e676 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -38,7 +38,7 @@ body: description: "If applicable, add screenshots to help explain your problem." value: | ![DESCRIPTION](LINK.png) - render: bash + render: bash validations: required: false - type: textarea From b26e9346695551ddc86f3fe6410ffa63fb216cdc Mon Sep 17 00:00:00 2001 From: Charles <46334090+charlestian23@users.noreply.github.com> Date: Tue, 26 Jul 2022 11:38:45 -0400 Subject: [PATCH 13/23] Update bug_report.yml --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 0b7f6e676..748405670 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -9,7 +9,7 @@ body: label: "Describe the bug" description: "A clear and concise description of what the bug is." placeholder: "If your issue relates to a particular puzzle, make sure to remember to add the corresponding label to the issue." - validations: + validations: required: true - type: textarea id: reproduce From 4690b8a10676d6ae02b6c944b9cb248d266a1c6a Mon Sep 17 00:00:00 2001 From: Charles <46334090+charlestian23@users.noreply.github.com> Date: Tue, 26 Jul 2022 11:39:51 -0400 Subject: [PATCH 14/23] Update bug_report.yml --- .github/ISSUE_TEMPLATE/bug_report.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 748405670..8dd16b69b 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -10,7 +10,7 @@ body: description: "A clear and concise description of what the bug is." placeholder: "If your issue relates to a particular puzzle, make sure to remember to add the corresponding label to the issue." validations: - required: true + required: true - type: textarea id: reproduce attributes: @@ -36,11 +36,9 @@ body: attributes: label: "Screenshots" description: "If applicable, add screenshots to help explain your problem." - value: | - ![DESCRIPTION](LINK.png) - render: bash + placeholder: "![DESCRIPTION](LINK.png)" validations: - required: false + required: false - type: textarea id: files attributes: @@ -48,11 +46,11 @@ body: description: "If applicable, add any puzzle files to help explain your problem." placeholder: You will need to zip up the puzzle files before you can attach them to your issue. validations: - required: false + required: false - type: textarea id: additional_context attributes: label: "Additional Context" description: "Add any other context about the problem here." validations: - required: false + required: false From 92ad3c10bf7161c2a6d0ba7003e29d188a7c49f8 Mon Sep 17 00:00:00 2001 From: Charles <46334090+charlestian23@users.noreply.github.com> Date: Tue, 26 Jul 2022 11:40:26 -0400 Subject: [PATCH 15/23] Rename feature_request.md to feature_request.yml --- .../ISSUE_TEMPLATE/{feature_request.md => feature_request.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/ISSUE_TEMPLATE/{feature_request.md => feature_request.yml} (100%) diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.yml similarity index 100% rename from .github/ISSUE_TEMPLATE/feature_request.md rename to .github/ISSUE_TEMPLATE/feature_request.yml From 8968999192f863e451b0237bf56875ba0ffd90df Mon Sep 17 00:00:00 2001 From: Charles <46334090+charlestian23@users.noreply.github.com> Date: Tue, 26 Jul 2022 11:44:20 -0400 Subject: [PATCH 16/23] Update feature_request.yml --- .github/ISSUE_TEMPLATE/feature_request.yml | 52 ++++++++++++++-------- 1 file changed, 33 insertions(+), 19 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index 14da3297f..78c01bbe6 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -1,20 +1,34 @@ ---- name: Feature request -about: Suggest an idea for this project -title: "[FEATURE]" -labels: enhancement, new feature -assignees: '' - ---- - -**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 [...] - -**Describe the solution you'd like** -A clear and concise description of what you want to happen. - -**Describe alternatives you've considered** -A clear and concise description of any alternative solutions or features you've considered. - -**Additional context** -Add any other context or screenshots about the feature request here. +description: Suggest an idea for this project +title: "[FEATURE] " +labels: [enhancement, new feature] +body: + - type: textarea + id: description + attributes: + label: "Is your feature request related to a problem? Please describe." + description: "A clear and concise description of what the problem is." + placeholder: "Ex. I'm always frustrated when [...]" + validations: + required: true + - type: textarea + id: solution + attributes: + label: "Describe the solution you'd like" + description: "A clear and concise description of what you want to happen." + validations: + required: true + - type: textarea + id: alternatives + attributes: + label: "Describe alternatives you've considered" + description: "A clear and concise description of any alternative solutions or features you've considered." + validations: + required: false + - type: textarea + id: additional_context + attributes: + label: "Additional Context" + description: "Add any other context or screenshots about the feature request here." + validations: + required: false From 961194c16c4e57d872f2216285a3a268bc949cec Mon Sep 17 00:00:00 2001 From: Charles <46334090+charlestian23@users.noreply.github.com> Date: Tue, 26 Jul 2022 11:44:46 -0400 Subject: [PATCH 17/23] Update feature_request.yml --- .github/ISSUE_TEMPLATE/feature_request.yml | 50 +++++++++++----------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index 78c01bbe6..c97560de4 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -4,31 +4,31 @@ title: "[FEATURE] " labels: [enhancement, new feature] body: - type: textarea - id: description - attributes: - label: "Is your feature request related to a problem? Please describe." - description: "A clear and concise description of what the problem is." - placeholder: "Ex. I'm always frustrated when [...]" - validations: - required: true + id: description + attributes: + label: "Is your feature request related to a problem? Please describe." + description: "A clear and concise description of what the problem is." + placeholder: "Ex. I'm always frustrated when [...]" + validations: + required: true - type: textarea - id: solution - attributes: - label: "Describe the solution you'd like" - description: "A clear and concise description of what you want to happen." - validations: - required: true + id: solution + attributes: + label: "Describe the solution you'd like" + description: "A clear and concise description of what you want to happen." + validations: + required: true - type: textarea - id: alternatives - attributes: - label: "Describe alternatives you've considered" - description: "A clear and concise description of any alternative solutions or features you've considered." - validations: - required: false + id: alternatives + attributes: + label: "Describe alternatives you've considered" + description: "A clear and concise description of any alternative solutions or features you've considered." + validations: + required: false - type: textarea - id: additional_context - attributes: - label: "Additional Context" - description: "Add any other context or screenshots about the feature request here." - validations: - required: false + id: additional_context + attributes: + label: "Additional Context" + description: "Add any other context or screenshots about the feature request here." + validations: + required: false From 681664b191d246ccc4cdb71cd36e022896f17456 Mon Sep 17 00:00:00 2001 From: Charles <46334090+charlestian23@users.noreply.github.com> Date: Tue, 26 Jul 2022 11:48:35 -0400 Subject: [PATCH 18/23] Update bug_report.yml --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 8dd16b69b..25d6ba301 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -14,7 +14,7 @@ body: - type: textarea id: reproduce attributes: - label: "To Reproduce" + label: "Steps to Reproduce" description: "Steps to reproduce the behavior:" value: | 1. Go to '...' From 5d640fccc01d5b577d4ff45a5dfacb5a43c732b4 Mon Sep 17 00:00:00 2001 From: Charles <46334090+charlestian23@users.noreply.github.com> Date: Tue, 26 Jul 2022 11:49:38 -0400 Subject: [PATCH 19/23] Update bug_report.yml --- .github/ISSUE_TEMPLATE/bug_report.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 25d6ba301..51634bd1b 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -6,7 +6,7 @@ body: - type: textarea id: description attributes: - label: "Describe the bug" + label: "Description" description: "A clear and concise description of what the bug is." placeholder: "If your issue relates to a particular puzzle, make sure to remember to add the corresponding label to the issue." validations: @@ -27,7 +27,7 @@ body: - type: textarea id: expected_behavior attributes: - label: "Expected behavior" + label: "Expected Behavior" description: "A clear and concise description of what you expected to happen." validations: required: true From 8f4b0a3551c9aa6bd7c5faf54ed2199c7048904e Mon Sep 17 00:00:00 2001 From: Charles <46334090+charlestian23@users.noreply.github.com> Date: Tue, 26 Jul 2022 11:50:44 -0400 Subject: [PATCH 20/23] Update bug_report.yml --- .github/ISSUE_TEMPLATE/bug_report.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 51634bd1b..7e65c31a6 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -16,12 +16,10 @@ body: attributes: label: "Steps to Reproduce" description: "Steps to reproduce the behavior:" - value: | - 1. Go to '...' + placeholder: "1. Go to '...' 2. Click on '....' 3. Scroll down to '....' - 4. See error - render: bash + 4. See error" validations: required: true - type: textarea From b3e6bdaaeeabb91de377e4d94d28e5bbb8976207 Mon Sep 17 00:00:00 2001 From: Charles <46334090+charlestian23@users.noreply.github.com> Date: Tue, 26 Jul 2022 11:50:59 -0400 Subject: [PATCH 21/23] Update bug_report.yml --- .github/ISSUE_TEMPLATE/bug_report.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 7e65c31a6..a173e0ed1 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -17,8 +17,11 @@ body: label: "Steps to Reproduce" description: "Steps to reproduce the behavior:" placeholder: "1. Go to '...' + 2. Click on '....' + 3. Scroll down to '....' + 4. See error" validations: required: true From 7755395478bc227d8e0d1779c89aa6574f2e33be Mon Sep 17 00:00:00 2001 From: Charles <46334090+charlestian23@users.noreply.github.com> Date: Tue, 26 Jul 2022 11:51:32 -0400 Subject: [PATCH 22/23] Update bug_report.yml --- .github/ISSUE_TEMPLATE/bug_report.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index a173e0ed1..2d68897e3 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -20,9 +20,7 @@ body: 2. Click on '....' - 3. Scroll down to '....' - - 4. See error" + 3. See error" validations: required: true - type: textarea From 4cb5e797f454a15504b9f189a012d4cfbd8ec08f Mon Sep 17 00:00:00 2001 From: Charles <46334090+charlestian23@users.noreply.github.com> Date: Tue, 26 Jul 2022 14:00:48 -0400 Subject: [PATCH 23/23] Update pull_request_template.md --- .github/PULL_REQUEST_TEMPLATE/pull_request_template.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md b/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md index 23d61e3e8..9e019fb98 100644 --- a/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md +++ b/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md @@ -11,7 +11,6 @@ Closes #(issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Enhancement (improvement to an already existing feature) - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) -- [ ] This change requires a documentation update # How Has This Been Tested? @@ -19,10 +18,9 @@ Closes #(issue) # Checklist: -- [ ] My code follows the style guidelines of this project - [ ] I have performed a self-review of my code - [ ] I have commented my code, particularly in hard-to-understand areas -- [ ] I have made corresponding changes to the documentation +- [ ] I have made corresponding changes to the documentation (if applicable) - [ ] My changes generate no new warnings - [ ] I have added tests that prove my fix is effective or that my feature works - [ ] New and existing unit tests pass locally with my changes