From a5977ad665f91d4e39bbb7a25c903bccb406d4cc Mon Sep 17 00:00:00 2001 From: Maximilian Schulz Date: Thu, 17 Oct 2024 17:59:05 +0200 Subject: [PATCH] Fix update vs comment check --- tools/pycafe/create_pycafe_links.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/pycafe/create_pycafe_links.py b/tools/pycafe/create_pycafe_links.py index 787a9088b..4471aef03 100644 --- a/tools/pycafe/create_pycafe_links.py +++ b/tools/pycafe/create_pycafe_links.py @@ -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