Skip to content

Commit 6f45464

Browse files
committed
Fix passing debug flag value to sub-workflows
1 parent 3fddea2 commit 6f45464

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/weekly.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
security-events: write
5656
with:
5757
reason: '(weekly)'
58-
debug: github.event.inputs.debug
58+
debug: ${{github.event.inputs.debug || false}}
5959

6060
scorecard-repo-scan:
6161
if: github.repository_owner == 'quantumlib'
@@ -68,4 +68,4 @@ jobs:
6868
secrets: inherit
6969
with:
7070
reason: '(weekly)'
71-
debug: github.event.inputs.debug
71+
debug: ${{github.event.inputs.debug || false}}

0 commit comments

Comments
 (0)