From ed6005b75ac267cce36419a8406d8f86409ab01b Mon Sep 17 00:00:00 2001 From: Pasukhin Dmitry Date: Mon, 17 Feb 2025 15:11:03 +0100 Subject: [PATCH] Testing - Summarize only with success reference #377 Fix GitHub Actions workflow to filter completed runs by success status --- .github/workflows/build-and-test-multiplatform.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-and-test-multiplatform.yml b/.github/workflows/build-and-test-multiplatform.yml index 4667e95696..c43ee9c7ce 100644 --- a/.github/workflows/build-and-test-multiplatform.yml +++ b/.github/workflows/build-and-test-multiplatform.yml @@ -1735,7 +1735,7 @@ jobs: run: | response=$(curl -s \ -H "Accept: application/vnd.github.v3+json" \ - "https://api.github.com/repos/${{ github.repository }}/actions/runs?branch=${{ github.event.pull_request.base.ref }}&status=completed") + "https://api.github.com/repos/${{ github.repository }}/actions/runs?branch=${{ github.event.pull_request.base.ref }}&status=success") latest_run_id=$(echo "$response" | jq -r '.workflow_runs[] | select(.name=="Build and Test OCCT on Multiple Platforms") | .id' | head -n 1) echo "latest_run_id=$latest_run_id" >> $GITHUB_ENV