Skip to content
Snippets Groups Projects
Commit c35bfdc0 authored by Lorenzo Pagliai's avatar Lorenzo Pagliai
Browse files

Comment workflow rule avoiding to run on itnegration branch

* Change syntax rule
parent 0d692ed4
No related branches found
No related tags found
No related merge requests found
...@@ -57,8 +57,8 @@ workflow: ...@@ -57,8 +57,8 @@ workflow:
- if: $CI_PROJECT_ID != $MANIFEST_PROJECT_ID - if: $CI_PROJECT_ID != $MANIFEST_PROJECT_ID
when: never when: never
# Do not run pipelines on integration branches # Do not run pipelines on integration branches
- if: $CI_COMMIT_REF_NAME =~ /^integrate\/.*/ #- if: $CI_COMMIT_REF_NAME =~ /^integrate\/.*/
when: never # when: never
# In all other cases, run the pipeline automatically # In all other cases, run the pipeline automatically
.full_build_pipeline: .full_build_pipeline:
...@@ -69,7 +69,6 @@ workflow: ...@@ -69,7 +69,6 @@ workflow:
- if: $CI_COMMIT_REF_NAME != $MASTER_BRANCH - if: $CI_COMMIT_REF_NAME != $MASTER_BRANCH
- if: $CI_PIPELINE_SOURCE == "api" - if: $CI_PIPELINE_SOURCE == "api"
- if: $CI_PIPELINE_SOURCE == "pipeline" - if: $CI_PIPELINE_SOURCE == "pipeline"
when: manual
- if: $CI_PIPELINE_SOURCE == "web" - if: $CI_PIPELINE_SOURCE == "web"
# Trigger the pipeline on schedule basis (for weekly release) # Trigger the pipeline on schedule basis (for weekly release)
......
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