From a4d64e21f376be42b78d4a45d804f72dbba30fb0 Mon Sep 17 00:00:00 2001 From: Daniel Watkins Date: Tue, 10 Mar 2020 23:11:42 -0400 Subject: workflows/cla.yml: use correct username for CLA check (#243) Instead of using the username that triggered the action (which, in the case of a committer merging master into a PR branch will be the committer), always use the username of the submitter of the pull request. --- .github/workflows/cla.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to '.github') diff --git a/.github/workflows/cla.yml b/.github/workflows/cla.yml index 757e8ff1..389eccb8 100644 --- a/.github/workflows/cla.yml +++ b/.github/workflows/cla.yml @@ -8,10 +8,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - - name: Check CLA signing status for ${{ github.actor}} + - name: Check CLA signing status for ${{ github.event.pull_request.user.login }} run: | cat > unsigned-cla.txt <