Prevent duplicate pipelines
This commit is contained in:
parent
50d3209ce8
commit
27a8f6a8d9
|
@ -7,6 +7,13 @@ variables: &global_variables
|
|||
DB_HOST: postgres
|
||||
MIX_ENV: test
|
||||
|
||||
workflow:
|
||||
rules:
|
||||
- if: $CI_PIPELINE_SOURCE == "merge_request_event"
|
||||
- if: $CI_COMMIT_BRANCH && $CI_OPEN_MERGE_REQUESTS
|
||||
when: never
|
||||
- if: $CI_COMMIT_BRANCH
|
||||
|
||||
cache: &global_cache_policy
|
||||
key:
|
||||
files:
|
||||
|
|
Loading…
Reference in New Issue