From 4ae986967cd61bf1189f4eb84a4e7f272a23bb1e Mon Sep 17 00:00:00 2001 From: Josh McKinney Date: Fri, 14 Nov 2025 17:34:14 -0800 Subject: [PATCH] ci: only run CLA assistant for openai org repos (#6687) This prevents notifications coming from PRs on forked repos --- .github/workflows/cla.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/cla.yml b/.github/workflows/cla.yml index ec3a953cb..bd70e9a81 100644 --- a/.github/workflows/cla.yml +++ b/.github/workflows/cla.yml @@ -13,6 +13,9 @@ permissions: jobs: cla: + # Only run the CLA assistant for the canonical openai repo so forks are not blocked + # and contributors who signed previously do not receive duplicate CLA notifications. + if: ${{ github.repository_owner == 'openai' }} runs-on: ubuntu-latest steps: - uses: contributor-assistant/github-action@v2.6.1