We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8544fb commit a00e5e9Copy full SHA for a00e5e9
index.js
@@ -372,6 +372,10 @@ async function runActionWithWitness(actionDir, witnessOptions) {
372
// Instead of filtering, pass all environment variables to the nested action
373
const envVars = { ...process.env };
374
375
+ // For testing, force the nested action to see a value for INPUT_WHO_TO_GREET
376
+ envVars["INPUT_WHO_TO_GREET"] = envVars["INPUT_WHO_TO_GREET"] || "Sigstore";
377
+ core.info(`For testing, setting INPUT_WHO_TO_GREET to: ${envVars["INPUT_WHO_TO_GREET"]}`);
378
+
379
// Build the witness run command
380
const cmd = ["run"];
381
0 commit comments