We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8dbb3b4 commit aec1a33Copy full SHA for aec1a33
1 file changed
.github/workflows/windows.yml
@@ -7,6 +7,9 @@ on:
7
jobs:
8
build:
9
name: Build
10
+ # Skip on release PRs (version-only bump); reports "skipped" = passing for
11
+ # the required check. See test.yml for rationale.
12
+ if: ${{ !startsWith(github.head_ref, 'release/') }}
13
runs-on: windows-latest
14
steps:
15
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
@@ -36,6 +39,7 @@ jobs:
36
39
test:
37
40
name: Test ${{ matrix.package }}
38
41
needs: [build]
42
43
strategy:
44
fail-fast: false
45
matrix:
0 commit comments