Skip to content
Snippets Groups Projects
Commit d67898a2 authored by Tim Jaacks's avatar Tim Jaacks
Browse files

Manifest: skip build if "skip build" label is set

parent bffc6097
No related branches found
No related tags found
1 merge request!252Manifest: switch from branch pipelines to merge request pipelines
Pipeline #54988 passed with stage
in 22 minutes and 8 seconds
......@@ -23,6 +23,9 @@ workflow:
# Do not run pipelines on integration branches
- if: $CI_COMMIT_REF_NAME =~ /^integrate\/.*/
when: never
# Do not run pipeline if the "skip build" label is set on the merge request
- if: $CI_MERGE_REQUEST_LABELS =~ /skip build/
when: never
# Run pipelines for merge requests
- if: $CI_MERGE_REQUEST_IID
# Run pipelines on the master branch
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment