Skip to content

Commit

Permalink
Fix update vs comment check
Browse files Browse the repository at this point in the history
  • Loading branch information
maxschulz-COL committed Oct 17, 2024
1 parent eef2980 commit a5977ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/pycafe/create_pycafe_links.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def post_comment(urls: list[tuple[str, str]]):
comments = pr.get_issue_comments()
bot_comment = None
for comment in comments:
if comment.body.startswith("View the dashboards live on PyCafe:"):
if comment.body.startswith("View the example dashboards of the current commit live"):
bot_comment = comment
break

Expand Down

0 comments on commit a5977ad

Please sign in to comment.