File tree Expand file tree Collapse file tree 1 file changed +12
-6
lines changed
Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -2,14 +2,11 @@ name: Verify Bundled
22
33on :
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
1411permissions :
1512 contents : read
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
You can’t perform that action at this time.
0 commit comments