Skip to content

Commit

Permalink
update logic
Browse files Browse the repository at this point in the history
  • Loading branch information
cgundy committed Dec 16, 2024
1 parent 8b84fee commit 38fc951
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reusable_workflows/check_cla/check_cla_pr.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def leave_failed_comment_on_issue(self, issue: GHIssue) -> None:
issue.create_comment(messages.FAILED_COMMENT)

def comment_on_pr(self, pr: GHPullRequest, pr_comment: str) -> None:
pr_comments = pr.comments()
pr_comments = pr.issue_comments()
if not self.check_if_comment_already_exists(pr_comment, pr_comments):
pr.create_comment(pr_comment)

Expand Down

0 comments on commit 38fc951

Please sign in to comment.