You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 23, 2026. It is now read-only.
Describe the bug
The README workflow example uses on: issue_comment with an if condition that checks only for the CLA magic phrase. issue_comment events are fired for both pull requests and normal issues, so posting the phrase on a normal issue can run the CLA action without PR context.
To Reproduce
Configure the workflow as shown in the README (issue_comment + current if condition).
Open a normal GitHub Issue (not a PR).
Add this comment to the issue: I have read the CLA Document and I hereby sign the CLA.
Observe that the workflow is triggered for that issue comment.
Expected behavior
The CLA workflow should only run for:
pull_request_target events, or
issue_comment events where the comment is on a pull request (github.event.issue.pull_request exists).
Non-PR issue comments should not trigger CLA processing.
Describe the bug
The README workflow example uses
on: issue_commentwith anifcondition that checks only for the CLA magic phrase.issue_commentevents are fired for both pull requests and normal issues, so posting the phrase on a normal issue can run the CLA action without PR context.To Reproduce
issue_comment+ currentifcondition).I have read the CLA Document and I hereby sign the CLA.Expected behavior
The CLA workflow should only run for:
pull_request_targetevents, orissue_commentevents where the comment is on a pull request (github.event.issue.pull_requestexists).Non-PR issue comments should not trigger CLA processing.
Screenshots
N/A