Skip to content

Commit

Permalink
Remove invalid command from JSON
Browse files Browse the repository at this point in the history
  • Loading branch information
eyalb4doc committed Nov 29, 2024
1 parent 7cfb284 commit f909868
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ class Utils {
"provider_name": "${oidcProviderName}",
"project_key": "${projectKey}",
"gh_job_id": "${jobId}",
"gh_run_id": "${runId}"
"gh_run_id": "${runId}",
}`;
const additionalHeaders = {
'Content-Type': 'application/json',
Expand Down
2 changes: 1 addition & 1 deletion src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ export class Utils {
"provider_name": "${oidcProviderName}",
"project_key": "${projectKey}",
"gh_job_id": "${jobId}",
"gh_run_id": "${runId}"
"gh_run_id": "${runId}",
}`;

const additionalHeaders: OutgoingHttpHeaders = {
Expand Down

0 comments on commit f909868

Please sign in to comment.