From 7ea6751fce13b1eafea3fbb01038d265aafcefa6 Mon Sep 17 00:00:00 2001 From: Rakan Al-Huneiti Date: Wed, 10 Jan 2024 11:47:36 +0300 Subject: [PATCH] Add PR template (#227) This PR template is for team members to fill required details on PR to ease the process of PR review & provide a checklist for important items not to be forgotten. --- .github/pull_request_template.md | 21 +++++++++++++++++++++ 1 file changed, 21 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 000000000..73f7d2b72 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,21 @@ +### Description + + +### Types of Changes + +- [ ] Bug fix (non-breaking change which fixes an issue) +- [ ] New feature (non-breaking change which adds functionality) +- [ ] Breaking change (fix or feature that would cause existing functionality to change) +- [ ] Dependency upgrade (A change in substrate or any 3rd party crate version) + +### Migrations and Hooks + +- [ ] This change requires a runtime migration. +- [ ] Modifies `on_initialize` +- [ ] Modifies `on_finalize` + +### Checklist + +- [ ] Change has been tested locally. +- [ ] Change adds / updates tests. +- [ ] Changelog doc updated.