Skip to Content
DocsReferenceWorkflow Examples

Workflow Examples

Ready-to-use configurations for common workflows.

GitHub Flow

Single main branch, feature branches merge directly.

{
  "tone": "constructive",
  "mergeTargetBranches": ["main"]
}

Git Flow

Development branch with release flow.

{
  "tone": "constructive",
  "mergeTargetBranches": ["develop", "main"]
}

Trunk-Based Development

Continuous integration to trunk/main.

{
  "tone": "harsh",
  "mergeTargetBranches": ["trunk"],
  "commit": true
}

Solo Developer

Maximum feedback, harsh tone.

{
  "tone": "harsh",
  "focus": "edge-case",
  "commit": true
}

Security-Focused

Always check security issues.

{
  "tone": "constructive",
  "focus": "security"
}

Enterprise

Constructive tone with exclusions for generated code.

{
  "tone": "constructive",
  "mergeTargetBranches": ["develop", "main"],
  "exclude": [
    "*.generated.ts",
    "*.pb.go",
    "vendor/*"
  ]
}
Last updated on