Skip to content

Commit

Permalink
Rename cifuzz workflow to OSS-Fuzz, and filter out unnecessary triggers
Browse files Browse the repository at this point in the history
This name is more consistent with the others. And the workflow does
not need to run on changes to the website or website source.

Signed-off-by: Cary Phillips <[email protected]>
  • Loading branch information
cary-ilm committed Aug 17, 2023
1 parent 318536c commit 2b4ea30
Showing 1 changed file with 29 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,38 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright Contributors to the OpenEXR Project.

name: CIFuzz
on:
name: OSS-Fuzz

# Skip the run on *.md changes and on changes to the website.
# Also, no need to run on changes to the bazel setup.

on:
push:
branches-ignore:
- RB-2.*
tags-ignore:
- v1.*
- v2.*
paths:
- '**'
- '!**.md'
- '!website/**'
- '!bazel/**'
pull_request:
# Jobs are skipped when ONLY Markdown (*.md) files are changed
paths-ignore:
- '**.md'
branches-ignore:
- RB-2.*
tags-ignore:
- v1.*
- v2.*
paths:
- '**'
- '!**.md'
- '!website/**'
- '!bazel/**'

permissions:
contents: read

jobs:
Fuzzing:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 2b4ea30

Please sign in to comment.