From 890df99584c468cbeb021d15d38802ab18a4be81 Mon Sep 17 00:00:00 2001 From: Ray Estrada Date: Fri, 8 Mar 2024 15:54:36 -0800 Subject: [PATCH] BDB-17 Create PR template --- .github/dependabot.yml | 15 +++++++ .github/pull_request_template.md | 68 ++++++++++++++++++++++++++++++++ 2 files changed, 83 insertions(+) create mode 100644 .github/dependabot.yml create mode 100644 .github/pull_request_template.md diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..0161920 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,15 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + - package-ecosystem: "npm" # See documentation for possible values + directory: "/starter_theme/" # Location of package manifests + schedule: + interval: "weekly" + labels: + - "npm" + - "dependencies" + diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..8619c0c --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,68 @@ + + + + +## Related issue + +Closes #_[issue_no]_ + + +## Summary + +Insert a brief summary of the changes included in this PR and any additional information or context which may help the reviewer. + +## Breaking change + +Indicate if this update includes a breaking change by selecting an option below: +- [ ] This IS NOT a breaking change. +- [ ] :warning: This IS a breaking change. + + +## Testing and review + +### Setup + +1. Insert any required steps to take before beginning test. + +### QA/Test + +1. Insert steps to test and confirm the result resolves the issue. + +## Checklist for the Developer + +- [ ] A link to the issue has been included above. +- [ ] No merge conflicts exist with the target branch. +- [ ] Automated tests have passed on this PR. +- [ ] Deployment and testing steps have been documented above, if applicable. + +## Checklist for the Reviewers + +- [ ] The file changes are relevant to the task objective and resolve the issue. +- [ ] Code standards and best practices are followed. +- [ ] QA/Test steps were successfully completed. +- [ ] Applicable logs are free of errors.