From 563c87cd054b93cc6a4b73335bec00d479b5d7d3 Mon Sep 17 00:00:00 2001 From: mkolasinski-splunk <105011638+mkolasinski-splunk@users.noreply.github.com> Date: Tue, 17 Dec 2024 13:22:03 +0100 Subject: [PATCH] fix: match trigger condition string --- .github/workflows/reusable-agreements.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/reusable-agreements.yaml b/.github/workflows/reusable-agreements.yaml index a6d3c9d..28a9407 100644 --- a/.github/workflows/reusable-agreements.yaml +++ b/.github/workflows/reusable-agreements.yaml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest steps: - name: "CLA Assistant" - if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target' + if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby accept the CLA') || github.event_name == 'pull_request_target' uses: contributor-assistant/github-action@v2.6.1 env: GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}