Skip to content

Commit bd70bc0

Browse files
committed
added debug passthrough
1 parent c7467b2 commit bd70bc0

32 files changed

+253
-100
lines changed

.github/workflows/alpine.yaml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ on:
1919
branches:
2020
- master
2121
workflow_dispatch:
22+
inputs:
23+
debug:
24+
type: boolean
25+
required: false
26+
default: false
2227
schedule:
2328
- cron: '0 7 * * *'
2429

@@ -27,10 +32,10 @@ concurrency:
2732
cancel-in-progress: true
2833

2934
jobs:
30-
build:
35+
make:
3136
if: github.event.repository.fork == false
32-
name: Alpine
33-
uses: HariSekhon/GitHub-Actions/.github/workflows/alpine.yaml@master
37+
name: Make
38+
uses: HariSekhon/GitHub-Actions/.github/workflows/make.yaml@master
3439
with:
35-
version: latest
36-
#debug: 1
40+
container: alpine:latest
41+
debug: ${{ github.event.inputs.debug }}

.github/workflows/alpine_3.yaml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ on:
1919
branches:
2020
- master
2121
workflow_dispatch:
22+
inputs:
23+
debug:
24+
type: boolean
25+
required: false
26+
default: false
2227
schedule:
2328
- cron: '0 7 * * *'
2429

@@ -27,10 +32,10 @@ concurrency:
2732
cancel-in-progress: true
2833

2934
jobs:
30-
build:
35+
make:
3136
if: github.event.repository.fork == false
32-
name: Alpine 3
33-
uses: HariSekhon/GitHub-Actions/.github/workflows/alpine.yaml@master
37+
name: Make
38+
uses: HariSekhon/GitHub-Actions/.github/workflows/make.yaml@master
3439
with:
35-
version: 3
36-
#debug: 1
40+
container: alpine:3
41+
debug: ${{ github.event.inputs.debug }}

.github/workflows/centos.yaml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ on:
1919
branches:
2020
- master
2121
workflow_dispatch:
22+
inputs:
23+
debug:
24+
type: boolean
25+
required: false
26+
default: false
2227
schedule:
2328
- cron: '0 7 * * *'
2429

@@ -27,10 +32,10 @@ concurrency:
2732
cancel-in-progress: true
2833

2934
jobs:
30-
build:
35+
make:
3136
if: github.event.repository.fork == false
32-
name: CentOS
33-
uses: HariSekhon/GitHub-Actions/.github/workflows/centos.yaml@master
37+
name: Make
38+
uses: HariSekhon/GitHub-Actions/.github/workflows/make.yaml@master
3439
with:
35-
version: latest
36-
#debug: 1
40+
container: centos:latest
41+
debug: ${{ github.event.inputs.debug }}

.github/workflows/centos7.yaml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ on:
1919
branches:
2020
- master
2121
workflow_dispatch:
22+
inputs:
23+
debug:
24+
type: boolean
25+
required: false
26+
default: false
2227
schedule:
2328
- cron: '0 7 * * *'
2429

@@ -27,10 +32,10 @@ concurrency:
2732
cancel-in-progress: true
2833

2934
jobs:
30-
build:
35+
make:
3136
if: github.event.repository.fork == false
32-
name: CentOS 7
33-
uses: HariSekhon/GitHub-Actions/.github/workflows/centos.yaml@master
37+
name: Make
38+
uses: HariSekhon/GitHub-Actions/.github/workflows/make.yaml@master
3439
with:
35-
version: 7
36-
#debug: 1
40+
container: centos:7
41+
debug: ${{ github.event.inputs.debug }}

.github/workflows/centos8.yaml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ on:
1919
branches:
2020
- master
2121
workflow_dispatch:
22+
inputs:
23+
debug:
24+
type: boolean
25+
required: false
26+
default: false
2227
schedule:
2328
- cron: '0 7 * * *'
2429

@@ -27,10 +32,10 @@ concurrency:
2732
cancel-in-progress: true
2833

2934
jobs:
30-
build:
35+
make:
3136
if: github.event.repository.fork == false
32-
name: CentOS 8
33-
uses: HariSekhon/GitHub-Actions/.github/workflows/centos.yaml@master
37+
name: Make
38+
uses: HariSekhon/GitHub-Actions/.github/workflows/make.yaml@master
3439
with:
35-
version: 8
36-
#debug: 1
40+
container: centos:8
41+
debug: ${{ github.event.inputs.debug }}

.github/workflows/checkov.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,11 @@ on:
3232
- master
3333
- main
3434
workflow_dispatch:
35+
inputs:
36+
debug:
37+
type: boolean
38+
required: false
39+
default: false
3540
schedule:
3641
- cron: '0 0 * * 1'
3742

.github/workflows/debian.yaml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ on:
1919
branches:
2020
- master
2121
workflow_dispatch:
22+
inputs:
23+
debug:
24+
type: boolean
25+
required: false
26+
default: false
2227
schedule:
2328
- cron: '0 7 * * *'
2429

@@ -27,10 +32,10 @@ concurrency:
2732
cancel-in-progress: true
2833

2934
jobs:
30-
build:
35+
make:
3136
if: github.event.repository.fork == false
32-
name: Debian
33-
uses: HariSekhon/GitHub-Actions/.github/workflows/debian.yaml@master
37+
name: Make
38+
uses: HariSekhon/GitHub-Actions/.github/workflows/make.yaml@master
3439
with:
35-
version: latest
36-
#debug: 1
40+
container: debian:latest
41+
debug: ${{ github.event.inputs.debug }}

.github/workflows/debian_10.yaml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ on:
1919
branches:
2020
- master
2121
workflow_dispatch:
22+
inputs:
23+
debug:
24+
type: boolean
25+
required: false
26+
default: false
2227
schedule:
2328
- cron: '0 7 * * *'
2429

@@ -27,10 +32,10 @@ concurrency:
2732
cancel-in-progress: true
2833

2934
jobs:
30-
build:
35+
make:
3136
if: github.event.repository.fork == false
32-
name: Debian 10
33-
uses: HariSekhon/GitHub-Actions/.github/workflows/debian.yaml@master
37+
name: Make
38+
uses: HariSekhon/GitHub-Actions/.github/workflows/make.yaml@master
3439
with:
35-
version: 10
36-
#debug: 1
40+
container: debian:10
41+
debug: ${{ github.event.inputs.debug }}

.github/workflows/debian_6.yaml.disabled

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ on:
1919
branches:
2020
- master
2121
workflow_dispatch:
22+
inputs:
23+
debug:
24+
type: boolean
25+
required: false
26+
default: false
2227
schedule:
2328
- cron: '0 7 * * *'
2429

@@ -27,10 +32,10 @@ concurrency:
2732
cancel-in-progress: true
2833

2934
jobs:
30-
build:
35+
make:
3136
if: github.event.repository.fork == false
32-
name: Debian 6
33-
uses: HariSekhon/GitHub-Actions/.github/workflows/debian.yaml@master
37+
name: Make
38+
uses: HariSekhon/GitHub-Actions/.github/workflows/make.yaml@master
3439
with:
35-
version: 6
36-
#debug: 1
40+
container: debian:6
41+
debug: ${{ github.event.inputs.debug }}

.github/workflows/debian_7.yaml.disabled

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ on:
1919
branches:
2020
- master
2121
workflow_dispatch:
22+
inputs:
23+
debug:
24+
type: boolean
25+
required: false
26+
default: false
2227
schedule:
2328
- cron: '0 7 * * *'
2429

@@ -27,10 +32,10 @@ concurrency:
2732
cancel-in-progress: true
2833

2934
jobs:
30-
build:
35+
make:
3136
if: github.event.repository.fork == false
32-
name: Debian 7
33-
uses: HariSekhon/GitHub-Actions/.github/workflows/debian.yaml@master
37+
name: Make
38+
uses: HariSekhon/GitHub-Actions/.github/workflows/make.yaml@master
3439
with:
35-
version: 7
36-
#debug: 1
40+
container: debian:7
41+
debug: ${{ github.event.inputs.debug }}

0 commit comments

Comments
 (0)