From 93e5357027e8c95f1b18a065ba0ed0b32f11c12b Mon Sep 17 00:00:00 2001 From: osmaczko <33099791+osmaczko@users.noreply.github.com> Date: Mon, 21 Mar 2022 11:02:09 +0100 Subject: [PATCH] ci: add pull request template --- ui/StatusQ/.github/pull_request_template.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 ui/StatusQ/.github/pull_request_template.md diff --git a/ui/StatusQ/.github/pull_request_template.md b/ui/StatusQ/.github/pull_request_template.md new file mode 100644 index 0000000000..e2e481a31d --- /dev/null +++ b/ui/StatusQ/.github/pull_request_template.md @@ -0,0 +1,16 @@ +### Checklist + +- [ ] follow [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/) + - the scope should be the component's name e.g: `feat(StatusListItem): ... ` + - when adding new components, the scope is the module e.g: `feat(StatusQ.Controls): ...` +- [ ] add documentation if necessary (new component, new feature) +- [ ] update sandbox app + - in case of new component, add new component page + - in case of new features, add variation to existing component page + - nice to have: add it to the demo application as well +- [ ] is this a breaking change? + - [ ] use the dedicated `BREAKING CHANGE` commit message section + - [ ] resolve breaking changes in [status-desktop](https://github.com/status-im/status-desktop) + - [ ] (pre-merge) adapt code to breaking changes + - [ ] (post-merge) update StatusQ submodule pointer +- [ ] test changes in [status-desktop](https://github.com/status-im/status-desktop)