ICU-22814 Run CIFuzz on PR

CIFuzz ran on post merged since 7/20
https://github.com/unicode-org/icu/actions/workflows/cifuzz.yml

Turn to run on every PR
This commit is contained in:
Frank Tang 2024-09-06 18:51:54 -07:00 committed by Frank Yung-Fong Tang
parent 9270216cb7
commit 6b00ed56d8

View file

@ -1,18 +1,26 @@
name: CIFuzz
on:
# comments out triggerin on PR for now
# pull_request:
# paths:
# - '**.c'
# - '**.cc'
# - '**.cpp'
# - '**.cxx'
# - '**.h'
# Only trigger by post merge for now.
pull_request:
branches: '**'
paths:
- '**.c'
- '**.cc'
- '**.cpp'
- '**.cxx'
- '**.h'
- '.github/workflows/**'
push:
branches:
- main
- 'maint/maint*'
paths:
- '**.c'
- '**.cc'
- '**.cpp'
- '**.cxx'
- '**.h'
- '.github/workflows/**'
workflow_dispatch:
permissions: {}
jobs:
Fuzzing: