We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7cd9465 commit 131d96cCopy full SHA for 131d96c
1 file changed
.gitlab-ci.yml
@@ -3,6 +3,18 @@ stages:
3
- container
4
- container:boot
5
6
+workflow:
7
+ rules:
8
+ # do not run pipeline if release-tools pushes
9
+ - if: $CI_PIPELINE_SOURCE == "push" && $GITLAB_USER_LOGIN == "code0-release-tools"
10
+ when: never
11
+ # trigger a pipeline when triggered by api
12
+ - if: $CI_PIPELINE_SOURCE == "api"
13
+ # trigger a pipeline when triggered from upstream project
14
+ - if: $CI_PIPELINE_SOURCE == "pipeline"
15
+ # trigger a pipeline when triggerd manually
16
+ - if: $CI_PIPELINE_SOURCE == "web"
17
+
18
.default-retry:
19
retry:
20
max: 2
0 commit comments