Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
mabar committed Jul 4, 2022
1 parent a1f1fd0 commit 533e0b7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/actions/status-check/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ runs:
steps:
- name: "Check required jobs are successful"
env:
RESULTS: "${{ join(inputs.needs.*.result, ' ') }}"
RESULTS: "${{ join(fromJSON(inputs.needs).*.result, ' ') }}"
ALLOW_SKIPPED: "${{ inputs.allow-skipped }}"
ALLOW_CANCELLED: "${{ inputs.allow-cancelled }}"
shell: "bash"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "ci"
name: "CI"

on:
pull_request:
Expand Down Expand Up @@ -210,4 +210,4 @@ jobs:
- name: "Check required jobs are successful"
uses: "./.github/actions/status-check"
with:
needs: "${{ needs }}"
needs: "${{ toJSON(needs) }}"

0 comments on commit 533e0b7

Please sign in to comment.