YAML for Git Merge
Merge a branch into the current branch in the pipeline filesystem.
YAML examples for Git Merge
Full configuration
yaml- action: "Merge develop into main" type: "GIT_MERGE" branch: "develop" conflict_strategy: "THEIRS" dry_run: false no_fast_forward: true commiter_email: "deployer@example.com" commit_message: "Merge develop into main"
Minimal configuration
yaml- action: "Merge feature branch" type: "GIT_MERGE" branch: "feature/my-feature"