Skip to content

Commit a0417ec

Browse files
committed
ci(schedule): promote to use the stable job list
1 parent fa4ae32 commit a0417ec

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ jobs:
185185
# Do not edit this file in .github/workflows
186186
build-windows-master: # job-name skip-pr skip-stable
187187
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
189189
env:
190190
RUSTFLAGS: -Ctarget-feature=+crt-static
191191
RUST_MIN_STACK: 16777216
@@ -349,7 +349,7 @@ jobs:
349349
# Do not edit this file in .github/workflows
350350
build-windows-stable: # job-name skip-master skip-pr
351351
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
353353
env:
354354
RUSTFLAGS: -Ctarget-feature=+crt-static
355355
RUST_MIN_STACK: 16777216
@@ -686,7 +686,7 @@ jobs:
686686
# Do not edit this file in .github/workflows
687687
build-linux-master: # job-name skip-pr skip-stable
688688
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
690690
permissions:
691691
id-token: write
692692
contents: read
@@ -855,7 +855,7 @@ jobs:
855855
# Do not edit this file in .github/workflows
856856
build-linux-stable: # job-name skip-master skip-pr
857857
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
859859
permissions:
860860
id-token: write
861861
contents: read

ci/actions-templates/linux-builds-template.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ jobs: # skip-master skip-pr skip-stable
77
build-linux-stable: # job-name skip-master skip-pr
88
runs-on: ${{ matrix.os || 'ubuntu-latest' }}
99
if: ${{ contains('["pull_request", "merge_group"]', github.event_name) }} # skip-master skip-stable
10-
if: ${{ (github.event_name == 'push' && github.ref_name == 'master') || github.event_name == 'schedule' }} # skip-pr skip-stable
11-
if: ${{ github.event_name == 'push' && github.ref_name == 'stable' }} # skip-pr skip-master
10+
if: ${{ (github.event_name == 'push' && github.ref_name == 'master') }} # skip-pr skip-stable
11+
if: ${{ github.event_name == 'push' && github.ref_name == 'stable' || github.event_name == 'schedule' }} # skip-pr skip-master
1212
permissions:
1313
id-token: write
1414
contents: read

ci/actions-templates/windows-builds-template.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ jobs: # skip-master skip-pr skip-stable
77
build-windows-stable: # job-name skip-master skip-pr
88
runs-on: windows-latest
99
if: ${{ contains('["pull_request", "merge_group"]', github.event_name) }} # skip-master skip-stable
10-
if: ${{ (github.event_name == 'push' && github.ref_name == 'master') || github.event_name == 'schedule' }} # skip-pr skip-stable
11-
if: ${{ github.event_name == 'push' && github.ref_name == 'stable' }} # skip-pr skip-master
10+
if: ${{ (github.event_name == 'push' && github.ref_name == 'master') }} # skip-pr skip-stable
11+
if: ${{ github.event_name == 'push' && github.ref_name == 'stable' || github.event_name == 'schedule' }} # skip-pr skip-master
1212
env:
1313
RUSTFLAGS: -Ctarget-feature=+crt-static
1414
RUST_MIN_STACK: 16777216

0 commit comments

Comments
 (0)