Skip to content

Commit 3f4e4a9

Browse files
committed
x
1 parent add86c7 commit 3f4e4a9

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

.github/workflows/verify-bundled.yml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,11 @@ name: Verify Bundled
22

33
on:
44
schedule:
5-
- cron: "0 1 * * *"
6-
workflow_dispatch: ~
5+
# every week
6+
- cron: "0 0 * * 0"
77
push:
8-
paths:
9-
- ext/opcache/jit/ir/**
108
pull_request:
11-
paths:
12-
- ext/opcache/jit/ir/**
9+
workflow_dispatch: ~
1310

1411
permissions:
1512
contents: read
@@ -20,7 +17,16 @@ jobs:
2017
steps:
2118
- name: git checkout
2219
uses: actions/checkout@v5
20+
21+
- uses: dorny/paths-filter@v3
22+
id: changes
23+
with:
24+
filters: |
25+
opcache_jit_ir:
26+
- 'ext/opcache/jit/ir/**'
27+
2328
- name: Download IR
29+
if: (success() || failure()) && (steps.filter.outputs.opcache_jit_ir = 'true' || (github.event_name != 'push' && github.event_name != 'pull_request'))
2430
run: |
2531
rm -rf ext/opcache/jit/ir
2632
git clone --revision=5a81104e650ebd7ac24eb63d4dff67db723a5278 https://github.com/dstogov/ir.git ext/opcache/jit/ir

0 commit comments

Comments
 (0)