Skip to content

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 include feature, bugfix, hotfix, chore, and test. Example: chore/CORP-58-lts-node-version.
  • Commit messages should follow conventional commits: <type>: <description>. Types include feat, fix, refactor, test, and chore. Example: chore: add new ESLint rule.