Commit ae27cb50 authored by Pierre Smeyers's avatar Pierre Smeyers
Browse files

feat: make MR pipeline the default workflow

BREAKING CHANGE: change default workflow from Branch pipeline to MR pipeline
parent 3c53c549
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
# default workflow rules
# default workflow rules: Merge Request pipelines
workflow:
  rules:
    # exclude merge requests
    - if: $CI_MERGE_REQUEST_ID
    # prevent branch pipeline when an MR is open (prefer MR pipeline)
    - if: '$CI_COMMIT_BRANCH && $CI_OPEN_MERGE_REQUESTS'
      when: never
    - when: always