Skip to content

Commit dc948c8

Browse files
aspeaketrynthink
authored andcommitted
Fix name of status check passed after CI results commit.
1 parent ebbb286 commit dc948c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/integration_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
git push -u origin $branch_name
8282
8383
# Set status checks to success
84-
checks=("code-quality-checks" "python-tests (3.10)" "python-tests (3.11)" "python-tests (3.12)" "integration-tests")
84+
checks=("code-quality-checks" "python-tests (3.10)" "python-tests (3.11)" "python-tests (3.12)" "Integration Testing")
8585
commit_sha=$(git rev-parse HEAD)
8686
status_url="https://api.github.com/repos/${{ github.repository }}/statuses/$commit_sha"
8787
for check in "${checks[@]}"; do
@@ -102,7 +102,7 @@ jobs:
102102
name: Stop self-hosted EC2 runner
103103
needs:
104104
- start-runner # required to get output from the start-runner job
105-
- run-test # required to wait when the main job is done
105+
- run-test # required to wait when the main job is done
106106
runs-on: ubuntu-latest
107107
if: ${{ always() }} # required to stop the runner even if the error happened in the previous jobs
108108
steps:

0 commit comments

Comments
 (0)