From dc948c8528fbaf1681e07d813c3fa203eec6fc23 Mon Sep 17 00:00:00 2001 From: aspeake1 Date: Fri, 18 Oct 2024 15:41:45 -0600 Subject: [PATCH] Fix name of status check passed after CI results commit. --- .github/workflows/integration_tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration_tests.yml b/.github/workflows/integration_tests.yml index fdecedd9..6f5eedc8 100644 --- a/.github/workflows/integration_tests.yml +++ b/.github/workflows/integration_tests.yml @@ -81,7 +81,7 @@ jobs: git push -u origin $branch_name # Set status checks to success - checks=("code-quality-checks" "python-tests (3.10)" "python-tests (3.11)" "python-tests (3.12)" "integration-tests") + checks=("code-quality-checks" "python-tests (3.10)" "python-tests (3.11)" "python-tests (3.12)" "Integration Testing") commit_sha=$(git rev-parse HEAD) status_url="https://api.github.com/repos/${{ github.repository }}/statuses/$commit_sha" for check in "${checks[@]}"; do @@ -102,7 +102,7 @@ jobs: name: Stop self-hosted EC2 runner needs: - start-runner # required to get output from the start-runner job - - run-test # required to wait when the main job is done + - run-test # required to wait when the main job is done runs-on: ubuntu-latest if: ${{ always() }} # required to stop the runner even if the error happened in the previous jobs steps: