Skip to content

Commit

Permalink
Disable CIFuzz workflow by default.
Browse files Browse the repository at this point in the history
Can be enabled with CI:fuzz label.
  • Loading branch information
szabadka committed Aug 2, 2024
1 parent b037186 commit 5969833
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ concurrency:

jobs:
fuzzing:
if: ${{ !contains(github.event.pull_request.labels.*.name, 'CI:none') }}
# TODO(szabadka) Enable by default after there is a separate jpegli project
# on oss-fuzz.
if: ${{ contains(github.event.pull_request.labels.*.name, 'CI:fuzz') }}
runs-on: ubuntu-latest
steps:
- name: Harden Runner
Expand Down

0 comments on commit 5969833

Please sign in to comment.