From 2bbad8e2173ee6076870dc7c09b86d2daba68550 Mon Sep 17 00:00:00 2001 From: Caio Lins Date: Thu, 11 Jun 2026 12:04:31 +0900 Subject: [PATCH] Skip Docker publish CI for forked PRs --- .github/workflows/deploy.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 6bc95c1..92e56ba 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -71,6 +71,8 @@ jobs: build-docker: runs-on: ubuntu-latest + # Forked PRs and fork pushes don't have access to Beeper registry secrets. + if: ${{ github.repository == 'beeper/line' && (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository) }} steps: - uses: actions/checkout@v4