Skip to content

Commit 8ccffeb

Browse files
committed
1 parent 9f74842 commit 8ccffeb

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

.github/workflows/cflite_pr.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,11 @@
77
name: Testing in ClusterFuzzLite (PR)
88

99
on:
10+
push:
11+
branches:
12+
- 'master'
1013
pull_request:
11-
types: [opened, reopened, synchronize, labeled]
14+
types: [opened, reopened, synchronize]
1215
paths-ignore:
1316
- 'cmake/BuildLua.cmake'
1417
- 'README.md'

.github/workflows/check.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@ name: Static analysis
22

33
on:
44
push:
5+
branches:
6+
- 'master'
57
pull_request:
8+
types: [opened, reopened, synchronize]
9+
paths:
10+
- '**.lua'
11+
- 'CMakePresets.json'
612

713
jobs:
814
cmake-presets:

.github/workflows/oss-fuzz.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ on:
44
push:
55
branches:
66
- 'master'
7+
pull_request:
8+
types: [opened, reopened, synchronize]
79
paths:
8-
- '.github/workflows/**'
10+
- '.github/workflows/oss-fuzz.yml'
911
# Lua is not supported by OSS Fuzz,
1012
# https://github.com/google/oss-fuzz/issues/13782.
1113
- 'tests/capi/**'
1214
- 'cmake/**'
1315
- 'CMakeLists.txt'
14-
pull_request:
15-
types: [opened, reopened, synchronize, labeled]
1616

1717
concurrency:
1818
# Update of a developer branch cancels the previously scheduled workflow

.github/workflows/test.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@ name: Testing
22

33
on:
44
push:
5+
branches:
6+
- 'master'
57
pull_request:
8+
types: [opened, reopened, synchronize]
69

710
concurrency:
811
# Update of a developer branch cancels the previously scheduled workflow

0 commit comments

Comments
 (0)