From 3a1868b0a7d2995c7ed5c3204f991306e58f4d5b Mon Sep 17 00:00:00 2001 From: Sumit Dhanania Date: Mon, 15 Apr 2024 10:55:45 +0530 Subject: [PATCH] feat: pull request template for monorepo (#39) --- .github/pull_request_template.md | 37 ++++++++++++++++++++++++++++++++ 1 file changed, 37 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..82697ae1 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,37 @@ +## Description + + + +## Related Issue + + + +## Type of Change + +- [ ] Bug fix (non-breaking change which fixes an issue) +- [ ] New feature (non-breaking change which adds functionality) +- [ ] New Connector (Destination or Source Connector) +- [ ] Breaking change (fix or feature that would impact existing functionality) +- [ ] Styling change +- [ ] Documentation update +- [ ] Refactoring +- [ ] Chore + +## How Has This Been Tested? + + + +## Checklist: + +- [ ] Ensure a branch name is prefixed with `feature`, `bugfix`, `hotfix`, `release`, `style` or `chore` followed by `/` and branch name e.g `feature/add-salesforce-connector` +- [ ] Added unit tests for the changes made (if required) +- [ ] Have you made sure the commit messages meets the guidelines? +- [ ] Added relevant screenshots for the changes +- [ ] Have you tested the changes on local/staging? +- [ ] Added the new connector in rollout.rb +- [ ] Have you updated the version number of the gem? +- [ ] Have you ensured that your changes for new connector are documented in the [docs repo](https://github.com/Multiwoven/docs) or relevant documentation files? +- [ ] Have you updated the run time dependency in multiwoven-integrations.gemspec if new gems are added +- [ ] Have you made sure the code you have written follows the best practises to the best of your knowledge?