Skip to content

Commit a402e02

Browse files
authored
Add FUZZ_SCHEDULED condition in fuzzing pipeline (#1022)
1 parent 5bcf318 commit a402e02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.gitlab/fuzz.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ fuzz:infra:
66
rules:
77
# These rules allow for: manual trigger anywhere, automatic run on push to main, and automatic run on schedule on main
88
# We allow (but monitor) for failure of these jobs because it introduce a new dependency on the internal fuzzing infrastructure otherwise and we don't want to block CI.
9-
- if: '$CI_COMMIT_REF_NAME == "main" && $CI_PIPELINE_SOURCE == "schedule"'
9+
- if: '$CI_COMMIT_REF_NAME == "main" && $CI_PIPELINE_SOURCE == "schedule" && $FUZZ_SCHEDULED == "true"'
1010
- if: '$CI_COMMIT_REF_NAME == "main" && $CI_PIPELINE_SOURCE == "push"'
1111
- when: manual
1212
allow_failure: true

0 commit comments

Comments
 (0)