From b3230f34ca03f9a641b3fdf38b31b035422002cc Mon Sep 17 00:00:00 2001 From: Josh McKinney Date: Fri, 14 Nov 2025 11:53:54 -0800 Subject: [PATCH] ci: only run CLA assistant for openai org repos 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 ec3a953cb8..bd70e9a81e 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