Skip to content

Commit

Permalink
removed comment
Browse files Browse the repository at this point in the history
  • Loading branch information
argl committed Dec 12, 2024
1 parent 1c1ad89 commit 75c352f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion deployer/src/deployer/analyze_pr.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ def analyze_pr(build_directory: Path, config):

return combined_comment

# Truncates the content of a comment if it exceeds the maximum length of 64k (a GH API constraint).
def truncate_comment(comment):
if len(comment) > MAX_COMMENT_BODY_LENGTH:
return comment[:MAX_COMMENT_BODY_LENGTH] + "…\n\nTRUNCATED!"
Expand Down

0 comments on commit 75c352f

Please sign in to comment.