Skip to content

Commit 80ba446

Browse files
committed
hack: debug workflow call settings
1 parent 33c95e8 commit 80ba446

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ on:
3535
flavor:
3636
required: false
3737
type: string
38-
default: ''
38+
default: 'BLA'
3939
infix_repo:
4040
required: false
4141
type: string

.github/workflows/trigger.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ jobs:
1616
with:
1717
target: "x86_64"
1818
name: "infix"
19-
flavor: "_minimal"
19+
flavor: ${{ (github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'ci:main')) && '' || '_minimal' }}
2020

2121
build-aarch64:
2222
if: startsWith(github.repository, 'kernelkit/')
2323
uses: ./.github/workflows/build.yml
2424
with:
2525
target: "aarch64"
2626
name: "infix"
27-
flavor: "_minimal"
27+
flavor: ${{ (github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'ci:main')) && null || '_minimal' }}
2828

2929
test-run-x86_64:
3030
if: startsWith(github.repository, 'kernelkit/')

0 commit comments

Comments
 (0)