Skip to content

Commit 72b56ec

Browse files
committed
tweaked debug pass through as github.event.inputs.debug isn't present in scheduled runs
1 parent b118ae8 commit 72b56ec

32 files changed

+44
-30
lines changed

.github/workflows/alpine.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ jobs:
3838
uses: HariSekhon/GitHub-Actions/.github/workflows/make.yaml@master
3939
with:
4040
container: alpine:latest
41-
debug: ${{ github.event.inputs.debug }}
41+
debug: ${{ github.event.inputs.debug || false }}

.github/workflows/alpine_3.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ jobs:
3838
uses: HariSekhon/GitHub-Actions/.github/workflows/make.yaml@master
3939
with:
4040
container: alpine:3
41-
debug: ${{ github.event.inputs.debug }}
41+
debug: ${{ github.event.inputs.debug || false }}

.github/workflows/centos.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ jobs:
3838
uses: HariSekhon/GitHub-Actions/.github/workflows/make.yaml@master
3939
with:
4040
container: centos:latest
41-
debug: ${{ github.event.inputs.debug }}
41+
debug: ${{ github.event.inputs.debug || false }}

.github/workflows/centos7.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ jobs:
3838
uses: HariSekhon/GitHub-Actions/.github/workflows/make.yaml@master
3939
with:
4040
container: centos:7
41-
debug: ${{ github.event.inputs.debug }}
41+
debug: ${{ github.event.inputs.debug || false }}

.github/workflows/centos8.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ jobs:
3838
uses: HariSekhon/GitHub-Actions/.github/workflows/make.yaml@master
3939
with:
4040
container: centos:8
41-
debug: ${{ github.event.inputs.debug }}
41+
debug: ${{ github.event.inputs.debug || false }}

.github/workflows/checkov.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,4 @@ jobs:
5151
name: Checkov
5252
uses: HariSekhon/GitHub-Actions/.github/workflows/checkov.yaml@master
5353
with:
54-
debug: ${{ github.event.inputs.debug }}
54+
debug: ${{ github.event.inputs.debug || false }}

.github/workflows/debian.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ jobs:
3838
uses: HariSekhon/GitHub-Actions/.github/workflows/make.yaml@master
3939
with:
4040
container: debian:latest
41-
debug: ${{ github.event.inputs.debug }}
41+
debug: ${{ github.event.inputs.debug || false }}

.github/workflows/debian_10.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ jobs:
3838
uses: HariSekhon/GitHub-Actions/.github/workflows/make.yaml@master
3939
with:
4040
container: debian:10
41-
debug: ${{ github.event.inputs.debug }}
41+
debug: ${{ github.event.inputs.debug || false }}

.github/workflows/debian_6.yaml.disabled

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ jobs:
3838
uses: HariSekhon/GitHub-Actions/.github/workflows/make.yaml@master
3939
with:
4040
container: debian:6
41-
debug: ${{ github.event.inputs.debug }}
41+
debug: ${{ github.event.inputs.debug || false }}

.github/workflows/debian_7.yaml.disabled

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ jobs:
3838
uses: HariSekhon/GitHub-Actions/.github/workflows/make.yaml@master
3939
with:
4040
container: debian:7
41-
debug: ${{ github.event.inputs.debug }}
41+
debug: ${{ github.event.inputs.debug || false }}

0 commit comments

Comments
 (0)