Skip to content

Commit e03264f

Browse files
committed
no need for that job
Signed-off-by: Aaron Gonzales <aagonzales@nvidia.com>
1 parent 3e80355 commit e03264f

1 file changed

Lines changed: 0 additions & 27 deletions

File tree

.github/workflows/ci-checks.yml

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -169,30 +169,3 @@ jobs:
169169
files: coverage.xml
170170
token: ${{ secrets.CODECOV_TOKEN }}
171171
fail_ci_if_error: false
172-
173-
# ---------------------------------------------------------------------------
174-
# Single required status check for branch protection. Always runs so that
175-
# the check is present even when path filters cause the real CI jobs to be
176-
# skipped (result == "skipped" is treated as passing).
177-
# ---------------------------------------------------------------------------
178-
ci-status:
179-
name: CI Status
180-
if: always()
181-
needs: [changes, format, lint, typecheck, unit-test]
182-
runs-on: ubuntu-latest
183-
steps:
184-
- name: Check CI results
185-
run: |
186-
results=(
187-
"${{ needs.format.result }}"
188-
"${{ needs.lint.result }}"
189-
"${{ needs.typecheck.result }}"
190-
"${{ needs.unit-test.result }}"
191-
)
192-
for result in "${results[@]}"; do
193-
if [[ "$result" == "failure" || "$result" == "cancelled" ]]; then
194-
echo "❌ CI failed (result: $result)"
195-
exit 1
196-
fi
197-
done
198-
echo "✅ All CI jobs passed or were skipped"

0 commit comments

Comments
 (0)