From 3e845276907b458daa5f892f3ae3bd0eda7b7de4 Mon Sep 17 00:00:00 2001 From: Rodrigo Luzuriaga Date: Thu, 15 Aug 2024 07:20:30 -0700 Subject: [PATCH] Fix workflow call #601 --- .github/workflows/stable-releases-2_test-validity.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/stable-releases-2_test-validity.yml b/.github/workflows/stable-releases-2_test-validity.yml index dbdd157d7c..b07546f654 100644 --- a/.github/workflows/stable-releases-2_test-validity.yml +++ b/.github/workflows/stable-releases-2_test-validity.yml @@ -10,7 +10,7 @@ jobs: steps: - name: Call main workflow that calls all the distros - run: gh workflow run --repo rluzuriaga/testing-distros execute_test_install_fog.yml + run: gh workflow run --repo FOGProject/fogproject-install-validation run_all_distros.yml env: GITHUB_TOKEN: ${{ secrets.INSTALL_VALIDATION_REPO_TOKEN }} @@ -27,7 +27,7 @@ jobs: - name: Get run IDs run: | - run_id=$(gh run list --repo rluzuriaga/testing-distros --workflow execute_test_install_fog.yml --json databaseId --limit 1 | jq -r '.[0].databaseId') + run_id=$(gh run list --repo FOGProject/fogproject-install-validation --workflow run_all_distros.yml --json databaseId --limit 1 | jq -r '.[0].databaseId') echo "RUN_ID=$run_id" >> $GITHUB_ENV - name: Check if distro workflow passed or failed @@ -35,7 +35,7 @@ jobs: run_status="" while [[ $run_status != "success" && $run_status != "failure" ]]; do sleep 15 - run_status=$(gh run view --repo rluzuriaga/testing-distros ${{ env.RUN_ID }} --exit-status --json conclusion | jq -r '.conclusion') + run_status=$(gh run view --repo FOGProject/fogproject-install-validation ${{ env.RUN_ID }} --exit-status --json conclusion | jq -r '.conclusion') done if [[ $run_status == "failure" ]]; then