From a78563b80b653518f952b67ec8c65728713b3526 Mon Sep 17 00:00:00 2001 From: Peter Tripp Date: Fri, 30 May 2025 16:09:22 -0400 Subject: [PATCH] ci: Prevent "Tests Pass" job from running on forks (#31778) Example fork [actions run](https://github.com/alphaArgon/zed/actions/runs/15349715488/job/43194591563) which would be suppressed in the future. (Sorry @alphaArgon) Release Notes: - N/A --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3f3402f768..927d9682e6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -482,7 +482,9 @@ jobs: - macos_tests - windows_clippy - windows_tests - if: always() + if: | + github.repository_owner == 'zed-industries' && + always() steps: - name: Check all tests passed run: |