From 66edd38d0bdbf8ccbe57f3ca5e6c57da76347db4 Mon Sep 17 00:00:00 2001 From: jrballladares <92rvf8tm6y@privaterelay.appleid.com> Date: Mon, 4 May 2026 12:19:57 -0600 Subject: [PATCH] Fix CLA Assistant workflow --- .github/workflows/cla.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cla.yml b/.github/workflows/cla.yml index 0f9e166..841957d 100644 --- a/.github/workflows/cla.yml +++ b/.github/workflows/cla.yml @@ -1,4 +1,5 @@ name: "CLA Assistant" + on: issue_comment: types: [created] @@ -16,8 +17,8 @@ jobs: runs-on: ubuntu-latest steps: - name: "CLA Assistant" - if: (github.event.comment.body == 'recheck') || github.event_name == 'pull_request_target' - uses: contributor-assistant/github-action@v1 + if: github.event_name == 'pull_request_target' || github.event.comment.body == 'recheck' + uses: contributor-assistant/github-action@master env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: