@@ -185,7 +185,7 @@ jobs:
185
185
# Do not edit this file in .github/workflows
186
186
build-windows-master : # job-name skip-pr skip-stable
187
187
runs-on : windows-latest
188
- if : ${{ (github.event_name == 'push' && github.ref_name == 'master') || github.event_name == 'schedule' }} # skip-pr skip-stable
188
+ if : ${{ (github.event_name == 'push' && github.ref_name == 'master') }} # skip-pr skip-stable
189
189
env :
190
190
RUSTFLAGS : -Ctarget-feature=+crt-static
191
191
RUST_MIN_STACK : 16777216
@@ -349,7 +349,7 @@ jobs:
349
349
# Do not edit this file in .github/workflows
350
350
build-windows-stable : # job-name skip-master skip-pr
351
351
runs-on : windows-latest
352
- if : ${{ github.event_name == 'push' && github.ref_name == 'stable' }} # skip-pr skip-master
352
+ if : ${{ github.event_name == 'push' && github.ref_name == 'stable' || github.event_name == 'schedule' }} # skip-pr skip-master
353
353
env :
354
354
RUSTFLAGS : -Ctarget-feature=+crt-static
355
355
RUST_MIN_STACK : 16777216
@@ -686,7 +686,7 @@ jobs:
686
686
# Do not edit this file in .github/workflows
687
687
build-linux-master : # job-name skip-pr skip-stable
688
688
runs-on : ${{ matrix.os || 'ubuntu-latest' }}
689
- if : ${{ (github.event_name == 'push' && github.ref_name == 'master') || github.event_name == 'schedule' }} # skip-pr skip-stable
689
+ if : ${{ (github.event_name == 'push' && github.ref_name == 'master') }} # skip-pr skip-stable
690
690
permissions :
691
691
id-token : write
692
692
contents : read
@@ -855,7 +855,7 @@ jobs:
855
855
# Do not edit this file in .github/workflows
856
856
build-linux-stable : # job-name skip-master skip-pr
857
857
runs-on : ${{ matrix.os || 'ubuntu-latest' }}
858
- if : ${{ github.event_name == 'push' && github.ref_name == 'stable' }} # skip-pr skip-master
858
+ if : ${{ github.event_name == 'push' && github.ref_name == 'stable' || github.event_name == 'schedule' }} # skip-pr skip-master
859
859
permissions :
860
860
id-token : write
861
861
contents : read
0 commit comments