From ea09fa02de1cff5a84d885b4345241be8bfc00c9 Mon Sep 17 00:00:00 2001 From: Rory Abraham Date: Tue, 16 Mar 2021 18:42:24 -0700 Subject: [PATCH] Skip CLA if pr author is OSBotify --- .github/workflows/cla.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cla.yml b/.github/workflows/cla.yml index 9bb481b51512..dfa3e25a08b2 100644 --- a/.github/workflows/cla.yml +++ b/.github/workflows/cla.yml @@ -10,7 +10,7 @@ jobs: CLA: runs-on: ubuntu-latest # This job only runs for pull request comments or pull request target events (not issue comments) - if: github.event.issue.pull_request || (github.event_name == 'pull_request_target' && github.event.pull_request.head.ref != 'staging' && github.event.pull_request.head.ref != 'production') + if: github.event.issue.pull_request || (github.event_name == 'pull_request_target' && github.event.pull_request.user.login != 'OSBotify') steps: - uses: actions-ecosystem/action-regex-match@9c35fe9ac1840239939c59e5db8839422eed8a73 id: sign