Skip to content

Commit

Permalink
Fix name of status check passed after CI results commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
aspeake authored and trynthink committed Oct 21, 2024
1 parent ebbb286 commit dc948c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand Down

0 comments on commit dc948c8

Please sign in to comment.