From 29a91548f396494f12ebe949b5d517412c4a5335 Mon Sep 17 00:00:00 2001 From: Justin Persaud Date: Tue, 24 Oct 2023 11:08:12 -0400 Subject: [PATCH] fix imgbot name --- .github/workflows/authorChecklist.yml | 2 +- .github/workflows/cla.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/authorChecklist.yml b/.github/workflows/authorChecklist.yml index 7efb59498fd7..d9673faa0270 100644 --- a/.github/workflows/authorChecklist.yml +++ b/.github/workflows/authorChecklist.yml @@ -9,7 +9,7 @@ jobs: # then you also need to go into PHP and update the name of this job in the GH_JOB_NAME_CHECKLIST constant checklist: runs-on: ubuntu-latest - if: github.actor != 'OSBotify' || github.actor != 'imgbot' + if: github.actor != 'OSBotify' || github.actor != 'imgbot[bot]' steps: - name: authorChecklist.js uses: Expensify/App/.github/actions/javascript/authorChecklist@main diff --git a/.github/workflows/cla.yml b/.github/workflows/cla.yml index 6dd0f335ca00..3396f404b54b 100644 --- a/.github/workflows/cla.yml +++ b/.github/workflows/cla.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest # This job only runs for pull request comments or pull request target events (not issue comments) # It does not run for pull requests created by OSBotify - if: ${{ github.event.issue.pull_request || (github.event_name == 'pull_request_target' && (github.event.pull_request.user.login != 'OSBotify' || github.event.pull_request.user.login != 'imgbot') }} + if: ${{ github.event.issue.pull_request || (github.event_name == 'pull_request_target' && (github.event.pull_request.user.login != 'OSBotify' || github.event.pull_request.user.login != 'imgbot[bot]') }} steps: - name: CLA comment check uses: actions-ecosystem/action-regex-match@9c35fe9ac1840239939c59e5db8839422eed8a73