Created
December 5, 2020 06:39
-
-
Save adikari/6af77262a51363d86cd4a84dda8ea626 to your computer and use it in GitHub Desktop.
merge pipeline configuration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "$PIPELINE_NAME", | |
"description": "Pipeline for $PIPELINE_NAME merge", | |
"repository": "$REPOSITORY", | |
"default_branch": "master", | |
"steps": [ | |
{ | |
"type": "script", | |
"name": ":buildkite: $PIPELINE_TYPE", | |
"command": "buildkite-agent pipeline upload $SERVICE/.buildkite/$PIPELINE_TYPE.yml" | |
} | |
], | |
"cancel_running_branch_builds": true, | |
"skip_queued_branch_builds": true, | |
"branch_configuration": "master", | |
"provider_settings": { | |
"trigger_mode": "code", | |
"build_pull_requests": false, | |
"publish_blocked_as_pending": true, | |
"publish_commit_status_per_step": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment