diff --git a/.github/workflows/check_cla.yml b/.github/workflows/check_cla.yml index 285a645..45ea0e6 100644 --- a/.github/workflows/check_cla.yml +++ b/.github/workflows/check_cla.yml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-latest # Dont run this workflow if it was triggered by one of these bots # Don't run it during a merge queue, as it can't correctly identify the actor - if: ${{ github.actor != 'dependabot[bot]' && github.actor != 'github-actions[bot]' && github.event_name != 'merge_group' }} + if: ${{ github.event.pull_request.user.login != 'dependabot[bot]' && github.event.pull_request.user.login != 'github-actions[bot]' && github.event_name != 'merge_group' }} outputs: is_member: ${{ steps.check-membership.outputs.is_member}} steps: