From 4f9dcff3f47bbf73e69605825b663ac3d5584fa5 Mon Sep 17 00:00:00 2001 From: Quentin McGaw Date: Fri, 21 Nov 2025 20:16:57 +0000 Subject: [PATCH] hotfix(ci): verify-private requirement for publish, not itself --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a476c088..889ee459 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -74,7 +74,7 @@ jobs: github.event_name == 'release' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]') ) - needs: [verify, verify-private] + needs: [verify] runs-on: ubuntu-latest environment: secrets steps: @@ -121,7 +121,7 @@ jobs: github.event_name == 'release' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]') ) - needs: [verify, codeql] + needs: [verify, verify-private, codeql] permissions: actions: read contents: read