Skip to content

Commit 0b08957

Browse files
committed
.
1 parent e8460f1 commit 0b08957

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,4 @@ jobs:
3737
attestor-slsa-export: "true"
3838
enable-sigstore: "true"
3939
enable-archivista: "true"
40+
input-who-to-greet: "input-Sigstore" # Required input passed incorrectly

index.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -382,6 +382,12 @@ async function runActionWithWitness(actionDir, witnessOptions) {
382382
const inputPrefix = 'input-';
383383
const nestedInputs = {};
384384

385+
//log all the inputs
386+
Object.keys(process.env).forEach(key => {
387+
core.info(`Key: ${key}, Value: ${process.env[key]}`);
388+
}
389+
);
390+
385391
// Get all inputs that start with 'input-'
386392
Object.keys(process.env)
387393
.filter(key => key.startsWith('INPUT_'))

0 commit comments

Comments
 (0)