Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Print debug statement
  • Loading branch information
angelapwen committed Jan 24, 2024
commit 2dd6a5b9aa0d1882d07fcbc5b48e9cd0038cc7ea
1 change: 1 addition & 0 deletions lib/init-action-post.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/init-action-post.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions src/init-action-post.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,11 @@ async function runWrapper() {
job_status:
(process.env[EnvVar.JOB_STATUS] as JobStatus) ?? JobStatus.Unknown,
};
core.info(
`Sending job_status field as ${
(process.env[EnvVar.JOB_STATUS] as JobStatus) ?? JobStatus.Unknown
}`,
);
await sendStatusReport(statusReport);
}

Expand Down