From 6dd594c9008e6348286d35bdf3732cba7d33b878 Mon Sep 17 00:00:00 2001 From: Eric Olkowski <70952936+thatblindgeye@users.noreply.github.com> Date: Mon, 14 Feb 2022 15:07:50 -0500 Subject: [PATCH 1/6] Create PULL_REQUEST_TEMPLATE.md --- .github/PULL_REQUEST_TEMPLATE.md | 19 +++++++++++++++++++ 1 file changed, 19 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 0000000..8879cb7 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,19 @@ + + + +- [ ] I have thoroughly read and understand [The Odin Project Contributing Guide](https://github.com/TheOdinProject/theodinproject/blob/main/CONTRIBUTING.md) +- [ ] The title of this PR follows the `where the change occurs: brief description of change` format, e.g. `Intro to HTML and CSS lesson: Fix link text` + + +- [ ] If one exists, I have linked a related open issue to this PR in Step 2 below +- [ ] If changes were requested, I have made them and re-requested a review from the maintainer (top of the right sidebar) + +**1. Description of the Changes** + + + +**2. Related Issue** + +Closes #XXXXX From baa5b0a7610f3a80b6fb63de1030c0d894d8cfe9 Mon Sep 17 00:00:00 2001 From: Eric Olkowski <70952936+thatblindgeye@users.noreply.github.com> Date: Mon, 14 Feb 2022 15:09:20 -0500 Subject: [PATCH 2/6] Create bug_report.md --- .github/ISSUE_TEMPLATE/bug_report.md | 38 ++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..e2b4e57 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,38 @@ +--- +name: Bug Report +about: Create a report to help us improve +title: '' +labels: 'Status: Needs Review, Type: Bug' +assignees: '' + +--- + + + +- [ ] I have thoroughly read and understand [The Odin Project Contributing Guide](https://github.com/TheOdinProject/theodinproject/blob/main/CONTRIBUTING.md) +- [ ] The title of this issue follows the `where the change occurs: brief description of bug` format, e.g. `React section: Knowledge Checks don't link to resource` + + +- [ ] I would like to be assigned this issue to work on it + +**1. Description of the Bug** + + + +**2. How To Reproduce** + + + +**3. Expected Behavior** + + + +**4. Desktop/Device:** + - Device: + - OS: + - Browser: + - Version: + +**5. Additional Information** + + From 417ee0d6e5bd719d9bd75fa526c8148282ca9d85 Mon Sep 17 00:00:00 2001 From: Eric Olkowski <70952936+thatblindgeye@users.noreply.github.com> Date: Mon, 14 Feb 2022 15:09:44 -0500 Subject: [PATCH 3/6] Create feature_request.md --- .github/ISSUE_TEMPLATE/feature_request.md | 24 +++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..3dd36af --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,24 @@ +--- +name: Feature Request +about: Suggest a new feature or enhancement for this project +title: '' +labels: 'Status: Needs Review' +assignees: '' + +--- + + + +- [ ] I have thoroughly read and understand [The Odin Project Contributing Guide](https://github.com/TheOdinProject/theodinproject/blob/main/CONTRIBUTING.md) +- [ ] The title of this issue follows the `where the change occurs: brief description of request` format, e.g. `Global SCSS file: Buttons should have XYZ` + + +- [ ] I would like to be assigned this issue to work on it + +**1. Description of the Feature Request** + + + +**2. Additional Information** + + From f002e3d6d0ff49d01905032e717a26b7bfb6cf7b Mon Sep 17 00:00:00 2001 From: Eric Olkowski <70952936+thatblindgeye@users.noreply.github.com> Date: Sun, 20 Feb 2022 13:20:37 -0500 Subject: [PATCH 4/6] Update feature_request.md --- .github/ISSUE_TEMPLATE/feature_request.md | 42 +++++++++++++++-------- 1 file changed, 28 insertions(+), 14 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 3dd36af..4814cc2 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -1,24 +1,38 @@ --- name: Feature Request -about: Suggest a new feature or enhancement for this project -title: '' -labels: 'Status: Needs Review' -assignees: '' - +about: Suggest a new feature or enhancement for this project +title: "" +labels: "Status: Needs Review" +assignees: "" --- + - -- [ ] I have thoroughly read and understand [The Odin Project Contributing Guide](https://github.com/TheOdinProject/theodinproject/blob/main/CONTRIBUTING.md) -- [ ] The title of this issue follows the `where the change occurs: brief description of request` format, e.g. `Global SCSS file: Buttons should have XYZ` +Complete the following REQUIRED checkboxes: +- [ ] I have thoroughly read and understand [The Odin Project Contributing Guide](https://github.com/TheOdinProject/theodinproject/blob/main/CONTRIBUTING.md) +- [ ] The title of this issue follows the `location for request: brief description of request` format, e.g. `Exercises: Add exercise on XYZ` - -- [ ] I would like to be assigned this issue to work on it +The following checkbox is OPTIONAL: + +- [ ] I would like to be assigned this issue to work on it -**1. Description of the Feature Request** - +
+ +**1. Description of the Feature Request:** + -**2. Additional Information** - +**2. Acceptance Criteria:** + + + +**3. Additional Information:** + From f82c72f76046051857eacac0a79076c48966ae54 Mon Sep 17 00:00:00 2001 From: Eric Olkowski <70952936+thatblindgeye@users.noreply.github.com> Date: Sun, 20 Feb 2022 13:21:49 -0500 Subject: [PATCH 5/6] Update bug_report.md --- .github/ISSUE_TEMPLATE/bug_report.md | 56 ++++++++++++++++++---------- 1 file changed, 36 insertions(+), 20 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index e2b4e57..4c4571c 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,38 +1,54 @@ --- name: Bug Report -about: Create a report to help us improve -title: '' -labels: 'Status: Needs Review, Type: Bug' -assignees: '' - +about: Create a report to help us improve something that is not working correctly +title: "Bug - :" +labels: "Status: Needs Review, Type: Bug" +assignees: "" --- + - -- [ ] I have thoroughly read and understand [The Odin Project Contributing Guide](https://github.com/TheOdinProject/theodinproject/blob/main/CONTRIBUTING.md) -- [ ] The title of this issue follows the `where the change occurs: brief description of bug` format, e.g. `React section: Knowledge Checks don't link to resource` +Complete the following REQUIRED checkboxes: +- [ ] I have thoroughly read and understand [The Odin Project Contributing Guide](https://github.com/TheOdinProject/theodinproject/blob/main/CONTRIBUTING.md) +- [ ] The title of this issue follows the `Bug - location of bug: brief description of bug` format, e.g. `Bug - Exercises: File type incorrect for all test files` - -- [ ] I would like to be assigned this issue to work on it +The following checkbox is OPTIONAL: + +- [ ] I would like to be assigned this issue to work on it -**1. Description of the Bug** +
+ +**1. Description of the Bug:** -**2. How To Reproduce** - +**2. How To Reproduce:** + -**3. Expected Behavior** - +**3. Expected Behavior:** + **4. Desktop/Device:** - - Device: - - OS: - - Browser: - - Version: + +- Device: +- OS: +- Browser: +- Version: -**5. Additional Information** +**5. Additional Information:** From 649f0e3771a8173309aded9f9b573e37572b493b Mon Sep 17 00:00:00 2001 From: Eric Olkowski <70952936+thatblindgeye@users.noreply.github.com> Date: Sun, 20 Feb 2022 13:25:26 -0500 Subject: [PATCH 6/6] Update PULL_REQUEST_TEMPLATE.md --- .github/PULL_REQUEST_TEMPLATE.md | 37 +++++++++++++++++++++----------- 1 file changed, 24 insertions(+), 13 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 8879cb7..5a8d2e0 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,19 +1,30 @@ - + - -- [ ] I have thoroughly read and understand [The Odin Project Contributing Guide](https://github.com/TheOdinProject/theodinproject/blob/main/CONTRIBUTING.md) -- [ ] The title of this PR follows the `where the change occurs: brief description of change` format, e.g. `Intro to HTML and CSS lesson: Fix link text` +Complete the following REQUIRED checkboxes: + +- [ ] I have thoroughly read and understand [The Odin Project Contributing Guide](https://github.com/TheOdinProject/theodinproject/blob/main/CONTRIBUTING.md) +- [ ] The title of this PR follows the `location of change: brief description of change` format, e.g. `01_helloWorld: Update test cases` - -- [ ] If one exists, I have linked a related open issue to this PR in Step 2 below -- [ ] If changes were requested, I have made them and re-requested a review from the maintainer (top of the right sidebar) +Complete the following checkboxes ONLY IF they are applicable to your PR. You can complete them later if they are not currently applicable: +- [ ] I have ensured any exercise files included in this PR have passed all of their tests -**1. Description of the Changes** - +
+**1. Because:** + +Otherwise, provide a clear and concise reason for your pull request, e.g. what problem it solves or what benefit it provides. If this PR is related to, but does not close, another issue or PR, you can also link it as above without the 'Closes' keyword, e.g. "Related to #2013". + --> Closes #XXXXX + + +**2. This PR:** + + + +**3. Additional Information:** + +