mirror of
https://gitlab.com/mbugroup/lti-api.git
synced 2026-05-20 13:31:56 +00:00
21 lines
508 B
YAML
21 lines
508 B
YAML
workflow:
|
|
rules:
|
|
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
|
|
- if: '$CI_COMMIT_BRANCH == "development"'
|
|
- if: '$CI_COMMIT_BRANCH == "staging"'
|
|
- if: '$CI_COMMIT_BRANCH == "production"'
|
|
- when: never
|
|
|
|
include:
|
|
- local: "ci/development.yml"
|
|
rules:
|
|
- if: '$CI_COMMIT_BRANCH == "development"'
|
|
|
|
- local: "ci/staging.yml"
|
|
rules:
|
|
- if: '$CI_COMMIT_BRANCH == "staging"'
|
|
|
|
- local: "ci/production.yml"
|
|
rules:
|
|
- if: '$CI_COMMIT_BRANCH == "production"'
|