We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef15a73 commit 1199e64Copy full SHA for 1199e64
.github/workflows/ci.yml
@@ -14,7 +14,16 @@ jobs:
14
name: Run on ${{ matrix.os }} with SOFA ${{ matrix.sofa_branch }}
15
if: >
16
github.event_name == 'push' ||
17
- contains(github.event.pull_request.labels.*.name, 'pr: run ci')
+ (
18
+ github.event_name == 'pull_request' &&
19
20
+ contains(github.event.pull_request.labels.*.name, 'pr: run ci') &&
21
22
+ github.event.action != 'labeled' ||
23
+ github.event.label.name == 'pr: run ci'
24
+ )
25
26
27
runs-on: ${{ matrix.os }}
28
strategy:
29
fail-fast: false
0 commit comments