Skip to content

Commit

Permalink
logging
Browse files Browse the repository at this point in the history
  • Loading branch information
zacharyblasczyk committed Sep 25, 2024
1 parent 1900158 commit 3460c18
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions integrations/fetch-job-inputs/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ async function run() {
core.setOutput("environment_name", environment?.name);
core.setOutput("release_version", release?.version);

console.log("config", config);

for (const [key, value] of Object.entries(config ?? {})) {

Check failure on line 26 in integrations/fetch-job-inputs/src/index.ts

View workflow job for this annotation

GitHub Actions / Lint

Unnecessary conditional, expected left-hand side of `??` operator to be possibly null or undefined
console.log("config", key, value);
core.setOutput(`config_${key}`, value);
Expand Down

0 comments on commit 3460c18

Please sign in to comment.