mirror of
https://github.com/kasmtech/workspaces-images.git
synced 2026-07-19 01:24:40 +00:00
QA-354 Prevent duplicate pipelines for MRs
This commit is contained in:
parent
0c91d914a6
commit
2bb1dc677e
1 changed files with 10 additions and 0 deletions
|
|
@ -9,6 +9,16 @@ stages:
|
|||
- run
|
||||
default:
|
||||
retry: 2
|
||||
|
||||
# Prevent duplicate pipelines for push events to branches that also have open MRs
|
||||
workflow:
|
||||
rules:
|
||||
- if: $CI_PIPELINE_SOURCE == "merge_request_event"
|
||||
when: always
|
||||
- if: $CI_PIPELINE_SOURCE == "push" && $CI_OPEN_MERGE_REQUESTS
|
||||
when: never
|
||||
- when: always
|
||||
|
||||
variables:
|
||||
BASE_TAG: "1.17.0-rolling-daily"
|
||||
USE_PRIVATE_IMAGES: 0
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue