Skip to content

Commit

Permalink
needs escaping maybe
Browse files Browse the repository at this point in the history
  • Loading branch information
afuller-TT committed Mar 8, 2025
1 parent 7394400 commit 1d86f8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/workflow-status/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ runs:
const requiredJobs = "${{ inputs.required-jobs }}".split(",");
const optionalJobs = "${{ inputs.optional-jobs }}".split(",");
const needs = JSON.parse("${{ inputs.needs-context }}");
const needs = JSON.parse("${{ inputs.needs-context }}".replace(/\\/g, ''));
// Check required jobs
for (const job of requiredJobs) {
Expand Down

0 comments on commit 1d86f8c

Please sign in to comment.