Commit 343f1b2b authored by Sam Kerr's avatar Sam Kerr Committed by Shinya Maeda

Only run fuzzing on commit events, not all events

parent 0d9d4ce3
---
title: Only run fuzzing on commit events, not all events
merge_request: 48264
author:
type: changed
...@@ -61,7 +61,7 @@ apifuzzer_fuzz: ...@@ -61,7 +61,7 @@ apifuzzer_fuzz:
- if: $API_FUZZING_DISABLED_FOR_DEFAULT_BRANCH && - if: $API_FUZZING_DISABLED_FOR_DEFAULT_BRANCH &&
$CI_DEFAULT_BRANCH == $CI_COMMIT_REF_NAME $CI_DEFAULT_BRANCH == $CI_COMMIT_REF_NAME
when: never when: never
- if: $GITLAB_FEATURES =~ /\bapi_fuzzing\b/ - if: $CI_COMMIT_BRANCH && $GITLAB_FEATURES =~ /\bapi_fuzzing\b/
script: script:
# #
# Validate options # Validate options
...@@ -102,7 +102,7 @@ apifuzzer_fuzz_dnd: ...@@ -102,7 +102,7 @@ apifuzzer_fuzz_dnd:
- if: $API_FUZZING_DISABLED_FOR_DEFAULT_BRANCH && - if: $API_FUZZING_DISABLED_FOR_DEFAULT_BRANCH &&
$CI_DEFAULT_BRANCH == $CI_COMMIT_REF_NAME $CI_DEFAULT_BRANCH == $CI_COMMIT_REF_NAME
when: never when: never
- if: $GITLAB_FEATURES =~ /\bapi_fuzzing\b/ - if: $CI_COMMIT_BRANCH && $GITLAB_FEATURES =~ /\bapi_fuzzing\b/
services: services:
- docker:19.03.12-dind - docker:19.03.12-dind
script: script:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment