Skip to content

destination_branches

The destination_branches configuration allows you to specify which branches can be used as the destination for pull requests that trigger Terrateam operations. By default, Terrateam requires pull requests to have the repository’s default branch (usually named main or master) as the destination branch. However, you can customize this behavior using the destination branches configuration.

Default Configuration

destination_branches: []

Keys

KeyTypeDescription
destination_branchesarrayA list of allowed destination branches with an optional list of source branches. Each entry can be either a string or an object.

Branch

The branch attribute matches the branch that a pull request will be merged into. You can specify the branch name as a string or as an object with the branch key. For example, the following configurations are equivalent:

destination_branches:
- main
destination_branches:
- branch: main

Source Branches

The source_branches attribute matches the branch name that will be merged. It allows you to restrict which source branches can be merged into the specified destination branch. For example, to allow any source branch to be merged into the main branch, you can use the following configuration:

destination_branches:
- branch: main
source_branches: ['*']

Example

Consider the following destination_branches configuration:

destination_branches:
- main

If a pull request has the following properties:

  • Source branch: hotfix/revert-ami
  • Destination branch: main

Terrateam would evaluate the pull request as follows:

  • The main branch matches against the branch attribute.
  • The hotfix/revert-ami branch matches against the source_branches attribute (implicitly allowing all source branches).

Globs

Terrateam supports the use of globs in branch names and source branches using the * wildcard character. This allows you to match multiple branches with a single pattern. For example, to allow any branch starting with feature/ to be merged into the develop branch, you can use the following configuration:

destination_branches:
- branch: develop
source_branches: ['feature/*']

Not Patterns

You can negate a source branch pattern by placing a ! before it. This is useful for excluding specific branches from being merged into a destination branch. For example, to allow any branch except those starting with hotfix/ to be merged into the main branch, you can use the following configuration:

destination_branches:
- branch: main
source_branches: ['*', '!hotfix/*']

Considerations

When configuring destination branches, keep the following in mind:

  • The destination_branches configuration is always read from the repository’s default branch.
  • If no matching destination branch is found, Terrateam will not execute any operations on the pull request.
  • Be cautious when using globs and not patterns, as they can have unintended consequences if not carefully reviewed.
We use cookies and similar technologies to provide certain features, enhance the user experience and deliver content that is relevant to your interests. Depending on their purpose, analysis and marketing cookies may be used in addition to technically necessary cookies. By clicking on "Agree and continue", you declare your consent to the use of the aforementioned cookies. Here you can make detailed settings or revoke your consent (in part if necessary) with effect for the future. For further information, please refer to our Privacy Policy .