Skip to content
Merged
Changes from all commits
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
4 changes: 2 additions & 2 deletions .github/workflows/combine-schema.v3.2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,9 @@ jobs:
run: |
echo "Waiting for required status check 'validate-xml' to pass..."
for i in {1..30}; do
STATE=$(gh pr checks ${{ steps.create-pull-request.outputs.pull-request-url }} --check validate-xml --json conclusion --jq .conclusion || echo "")
STATE=$(gh pr checks ${{ steps.create-pull-request.outputs.pull-request-url }} --json name,state --jq ".[] | select(.name==\"validate-xml\") | .state" 2>/dev/null || echo "none")
echo "validate-xml = $STATE"
if [[ "$STATE" == "SUCCESS" ]]; then
if [[ "$STATE" == "success" || "$STATE" == "none" ]]; then
echo "validate-xml check passed."
break
fi
Expand Down