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 0f20c6c commit 9a75122Copy full SHA for 9a75122
.github/workflows/main.yml
@@ -5,6 +5,7 @@ name: main
5
6
on:
7
pull_request:
8
+ types: [ labeled, opened, synchronize, reopened ]
9
merge_group:
10
11
jobs:
@@ -25,7 +26,7 @@ jobs:
25
26
with: { clang-format-version: "18" }
27
28
test-windows:
- if: github.event_name == 'merge_group'
29
+ if: github.event_name == 'merge_group' || contains(github.event.pull_request.labels.*.name, 'ci:always')
30
runs-on: windows-latest
31
steps:
32
- uses: actions/cache@v4
@@ -41,7 +42,7 @@ jobs:
41
42
working-directory: test
43
44
test-linux:
45
46
runs-on: ubuntu-latest
47
48
0 commit comments