Skip to content

Commit 416d5ca

Browse files
committed
[ci] Fixed label name
1 parent d6dfb46 commit 416d5ca

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/pyatlan-pr.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name: Pyatlan Pull Request Build
44
# - Legacy sync integration tests: Always run on every PR with code changes
55
# - Legacy async integration tests: Only run when AIO changes detected or "run-async-tests" label
66
# - V9 unit tests: Always run on every PR with code changes
7-
# - V9 integration tests (sync + async): Only run when PR has the "run_pyatlan_v9_integration_test" label
7+
# - V9 integration tests (sync + async): Only run when PR has the "run_pyatlan_v9_integration_tests" label
88

99
on:
1010
pull_request:
@@ -130,12 +130,12 @@ jobs:
130130
exit 0
131131
fi
132132
133-
if echo '${{ toJson(github.event.pull_request.labels.*.name) }}' | grep -q "run_pyatlan_v9_integration_test"; then
133+
if echo '${{ toJson(github.event.pull_request.labels.*.name) }}' | grep -q "run_pyatlan_v9_integration_tests"; then
134134
echo "run-v9-integration=true" >> $GITHUB_OUTPUT
135-
echo "Found 'run_pyatlan_v9_integration_test' label"
135+
echo "Found 'run_pyatlan_v9_integration_tests' label"
136136
else
137137
echo "run-v9-integration=false" >> $GITHUB_OUTPUT
138-
echo "No 'run_pyatlan_v9_integration_test' label found, skipping v9 integration tests"
138+
echo "No 'run_pyatlan_v9_integration_tests' label found, skipping v9 integration tests"
139139
fi
140140
141141
qa-checks-and-unit-tests:
@@ -286,7 +286,7 @@ jobs:
286286
# V9 (msgspec) Jobs
287287
# =========================================================================
288288

289-
v9-unit-tests:
289+
v9-qa-checks-and-unit-tests:
290290
needs: [check-code-changes, vulnerability-scan]
291291
if: needs.check-code-changes.outputs.has-code-changes == 'true'
292292
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)