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 4b63728 commit 1afa094Copy full SHA for 1afa094
.gitlab-ci.yml
@@ -3,7 +3,8 @@ workflow:
3
- if: $CI_PIPELINE_SOURCE == "merge_request_event"
4
- if: $CI_COMMIT_BRANCH && $CI_OPEN_MERGE_REQUESTS
5
when: never
6
- - if: $CI_COMMIT_BRANCH
+ # run pipeline only on MRs and main branches
7
+ - if: $CI_COMMIT_REF_PROTECTED
8
9
default:
10
tags:
@@ -15,6 +16,10 @@ default:
15
16
- .npm/
17
- node_modules/
18
policy: pull
19
+ retry:
20
+ max: 2
21
+ when:
22
+ - runner_system_failure
23
24
variables:
25
FF_NETWORK_PER_BUILD: "true"
0 commit comments