Skip to content

Commit

Permalink
fix: match trigger condition string (#72)
Browse files Browse the repository at this point in the history
Adjust trigger condition string to custom-pr-sign-comment: "I have read
the CLA Document and I hereby accept the CLA"
  • Loading branch information
mkolasinski-splunk authored Dec 17, 2024
1 parent 2379f17 commit a5bda9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/reusable-agreements.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
Expand Down

0 comments on commit a5bda9f

Please sign in to comment.