Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Welcome! We appreciate your interest in contributing to the Team Operator projec
- [Testing](#testing)
- [Pull Request Process](#pull-request-process)
- [Code Review Guidelines](#code-review-guidelines)
- [Releasing](#releasing)
- [Getting Help](#getting-help)

## Project Overview
Expand Down Expand Up @@ -352,6 +353,18 @@ We follow specific guidelines for code review. For detailed review standards, se
- Personal preferences without clear benefit
- Theoretical concerns without concrete impact

## Releasing

Releases are automated via [semantic-release](https://semantic-release.gitbook.io/) when commits are merged to `main`. Version bumps are determined by conventional commit prefixes:

- `fix:` → patch (1.0.0 → 1.0.1)
- `feat:` → minor (1.0.0 → 1.1.0)
- `feat!:` or `BREAKING CHANGE:` → major (1.0.0 → 2.0.0)

The release workflow updates the changelog, tags the release, publishes the Helm chart to GHCR, and notifies downstream repos.

To manually trigger a release: `gh workflow run release.yml`

## Getting Help

If you have questions or need help:
Expand Down