File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -193,6 +193,18 @@ Branch naming convention:
193193- Bug fixes: ` <username>/fix-<linear_issue_id> `
194194- If no Linear issue ID is available, omit it from the branch name
195195
196+ PR title should follow conventional commit standards:
197+ - ` feat: ` new feature or functionality
198+ - ` fix: ` bug fix
199+ - ` docs: ` documentation or README changes
200+ - ` chore: ` maintenance tasks, dependency updates, etc.
201+ - ` refactor: ` code refactoring without changing behavior
202+ - ` test: ` adding or updating tests
203+
204+ You can optionally include a scope to indicate which package is affected:
205+ - ` feat(web): ` feature in the web package
206+ - ` fix(worker): ` bug fix in the worker package (` backend/ ` )
207+
196208PR description:
197209- If a GitHub issue number was provided, include ` Fixes #<github_issue_number> ` in the PR description
198210
You can’t perform that action at this time.
0 commit comments