File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed
Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -16,17 +16,21 @@ jobs:
1616 with :
1717 target : " x86_64"
1818 name : " infix"
19- flavor : ${{ (github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'ci:main'))
20- && fromJSON('null') || '_minimal' }}
19+ flavor : ${{ (
20+ (github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'ci:main'))
21+ || (github.event_name == 'push' && github.ref_name == 'main')
22+ ) && fromJSON('null') || '_minimal' }}
2123
2224 build-aarch64 :
2325 if : startsWith(github.repository, 'kernelkit/')
2426 uses : ./.github/workflows/build.yml
2527 with :
2628 target : " aarch64"
2729 name : " infix"
28- flavor : ${{ (github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'ci:main'))
29- && fromJSON('null') || '_minimal' }}
30+ flavor : ${{ (
31+ (github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'ci:main'))
32+ || (github.event_name == 'push' && github.ref_name == 'main')
33+ ) && fromJSON('null') || '_minimal' }}
3034
3135 test-run-x86_64 :
3236 if : startsWith(github.repository, 'kernelkit/')
You can’t perform that action at this time.
0 commit comments