Skip to content

Fix/semver ci rule

Luke Davis requested to merge fix/semver_ci_rule into main
rules:
    - if: '$CI_PIPELINE_SOURCE == "merge_request_event"' 
    - if: ($CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH || $CI_COMMIT_BRANCH == "dev")

means that the semver check will run on main after the merge because the rules are OR-ing not AND-ing This MR fixes that.

Merge request reports