Pull Requests
Changes to ZMK's main
branch are all done through pull requests, even for core committers. The following will help ensure an easier PR/review process for all involved.
Clean Commit History
Before opening a PR, ensure your branch has a clean commit history, which allows our release automation to generate clean changelogs, and allows easier understanding of our commit history when investigating regressions, etc.
A "clean" commit history satisfies the following:
- Commit messages follow our commit message conventions.
- The sequence of commits should be well organized, with discrete commits used to break any combined work into smaller, cohesive changes if the scope of a given PR/change is larger. This allows for easier code review. You can usually accomplish this by amending (e.g.
git add foo && git commit --amend
) or by interactive rebasing (e.g.git rebase -i upstream/main
) and squashing/rewording commits. - Do not use merge commits to catch up with ZMK
main
, instead using rebasing to address any issues with divergence (e.g.git rebase upstream/main
).
Commit Messages
The ZMK project uses conventional commits for their commit messages. This not only provides consistency for our commits, but also allows for release/versioning automation to determine the next version to release, generating changelogs, etc.
Commit messages will be checked as part of our CI process by GitHub Actions.
Guidelines
Commits should have the following:
- A first line prefix that includes a type, as well as appropriate scope in parentheses as needed.
- Following the prefix, a concise summary of the change, which documents the new behavior/feature/functionality in the positive (e.g. "wake from sleep now works with charlieplex kscan", not "fixed waked from sleep bug with charlieplex kscan driver").
- A blank line following the first line.
- A body that provides more detail of the changes. This may be a bulleted list or paragraph prose.
- An optional set of git trailers for things like GitHub keywords following a blank line.
Example
Here is an example of a good commit message:
feat(boards): Add numpad layouts
Added physical layouts for the following variants of numpads:
- With and without extra top row
- 2U plus key or 1U plus and backspace keys
- 2U 0 key or 1U 0 and 00 keys
- Full 1U grid/macropad layout
Other layouts exist, such as "southpaw" horizontally mirrored layouts,
and layouts with a fifth column, but those seem to be much less common.
Pre-Commit
To help make sure you don't need to wait for GitHub Actions to check your commits, you can set up pre-commit to check your commits as you create them.