We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6f4134 commit 1d30fccCopy full SHA for 1d30fcc
.github/workflows/build.yml
@@ -44,11 +44,11 @@ jobs:
44
- "1.85" # MSRV (Minimum supported rust version)
45
- stable
46
isPR:
47
- - ${{ github.event.pull_request }}
+ - ${{ github.event_name == 'pull_request' }}
48
isCIWindows:
49
- - ${{ github.event.pull_request && contains(github.event.pull_request.labels.*.name, 'CI:Windows') }}
+ - ${{ github.event.pull_request && contains(github.event.pull_request.labels.*.name, format('CI{0} Windows', ':')) }}
50
exclude:
51
- # excludes windows in a PR by default, unless labeled with 'CI:Windows'
+ # excludes windows in a PR by default, unless labeled with 'CI: Windows'
52
- os: 'windows-latest'
53
isPR: true
54
isCIWindows: false
0 commit comments