Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,20 @@ jobs:
path: packages/*/reports/mutation/
retention-days: 30
if-no-files-found: warn

# Aggregate check the town-crier trial tracks (TC-0069): the bus mirrors each
# PR's CI verdict by matching exactly one check-run name, case-sensitively,
# `ci-passed`. This job fans in every CI lane (just `check` today) and is
# intended to become the single required status check on `main` — branch
# protection swaps from `check` to `ci-passed` after this merges.
ci-passed:
name: ci-passed
runs-on: ubuntu-latest
needs: [check]
if: always()
steps:
- name: Verify all lanes passed
if: ${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') }}
Comment thread
Goosterhof marked this conversation as resolved.
run: |
echo "One or more CI lanes did not pass."
exit 1