Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for create_comment (0.32 sec)

  1. scripts/notify_translations.py

                settings=settings,
                discussion_number=discussion_number,
                after=last_edge.cursor,
            )
        return comment_nodes
    
    
    def create_comment(*, settings: Settings, discussion_id: str, body: str) -> Comment:
        data = get_graphql_response(
            settings=settings,
            query=add_comment_mutation,
            discussion_id=discussion_id,
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 21:25:59 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  2. scripts/deploy_docs_status.py

            if (
                comment.body.startswith(header)
                and comment.user.login == "github-actions[bot]"
            ):
                comment.edit(message)
                break
        else:
            issue.create_comment(message)
    
        logging.info("Finished")
    
    
    if __name__ == "__main__":
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Sep 30 05:56:53 UTC 2025
    - 4.4K bytes
    - Viewed (0)
Back to top