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

Skip build if "skip build" label is set

parent 9d430fe8
No related branches found
No related tags found
1 merge request!250Skip build if "skip build" label is set
Pipeline #54492 passed with stage
in 2 minutes and 27 seconds
......@@ -31,6 +31,9 @@ workflow:
.full_build_pipeline:
rules:
# Do not run build if the "skip build" label is set on the merge request
- if: $CI_MERGE_REQUEST_LABELS =~ /skip build/
when: never
# Run the full build pipeline on non-master branches (i.e. in the merge request)
# or if explicitly triggered by the API or the web button.
- if: $CI_COMMIT_REF_NAME != $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