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
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,13 @@ jobs:
# release.yml's build-macos/release jobs already carry.
beta-release:
needs: ci-gate
if: github.event_name == 'push' && github.ref == 'refs/heads/main' && needs.ci-gate.result == 'success'
# !cancelled() replaces the implicit success() status function --
# without it, any legitimately-skipped job in the TRANSITIVE needs
# chain (dependency-review is PR-only, changes-filtered jobs skip
# on docs-only pushes) auto-skips this job even when ci-gate itself
# succeeded; observed on the first green push run after the job
# landed (skipped, 0 steps, green gate).
if: ${{ !cancelled() && github.event_name == 'push' && github.ref == 'refs/heads/main' && needs.ci-gate.result == 'success' }}
runs-on: macos-latest
timeout-minutes: 30
permissions:
Expand Down
Loading