Git Workflow
- Each JIRA story / subtask should have only one merge request.
- Branch naming should follow this pattern:
<category/JIRA-TICKET-description-in-kebab-case>. Categories includefeature,bugfix,hotfix,chore, andtest. Example:chore/CORP-58-lts-node-version. - Commit messages should follow conventional commits:
<type>: <description>. Types includefeat,fix,refactor,test, andchore. Example:chore: add new ESLint rule.