Commit 50f7cb62 authored by Ruben ten Hove's avatar Ruben ten Hove
Browse files

Merge branch 'hoverht-master-patch-84922' into 'master'

docs: describe workflow rules

See merge request ci/templates!7
parents aa48f5de f4f2db28
Loading
Loading
Loading
Loading
+9 −1
Original line number Diff line number Diff line
include:
  - template: 'Workflows/MergeRequest-Pipelines.gitlab-ci.yml'
  - local: 'alm/semantic-release.yml'
  - local: 'alm/semantic-release-badge.yml'

workflow:
  rules:
    # Run if we're in a merge request
    - if: $CI_MERGE_REQUEST_IID
    # Run for tags, so we get semantic versioning
    - if: $CI_COMMIT_TAG
    # Run for changes on the master branch (so merged MRs)
    - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH

downstream:python-tests:
  stage: test
  variables: