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

Insert rule to not run retrigger on schedule

parent ff4f5efa
No related branches found
No related tags found
No related merge requests found
......@@ -58,8 +58,8 @@ workflow:
- if: $CI_PROJECT_ID != $MANIFEST_PROJECT_ID
when: never
# Do not run pipelines on integration branches
#- if: $CI_COMMIT_REF_NAME =~ /^integrate\/.*/
# when: never
- if: $CI_COMMIT_REF_NAME =~ /^integrate\/.*/
when: never
# In all other cases, run the pipeline automatically
.full_build_pipeline:
......@@ -130,6 +130,10 @@ retrigger:
extends:
- .infrastructure
- .full_build_pipeline
rules:
#Do not run on schedule
- if: $CI_PIPELINE_SOURCE == "schedule"
when: never
stage: retrigger
rules:
- if: $CI_PIPELINE_SOURCE == "pipeline"
......
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