Lines Matching refs:comment
36 If you have any further questions about this issue, don't hesitate to ask via a comment in the thread below.
79 comment = ""
81 comment = "{}\n".format(beginner_comment)
82 self.issue.create_comment(comment)
85 comment = f"""
95 self.issue.create_comment(comment)
122 for comment in self.pr.as_issue().get_comments():
123 if self.COMMENT_TAG in comment.body:
124 return comment
167 # Note: the comment is in markdown and the code below
169 comment = f"""
194 self.pr.as_issue().create_comment(comment)
225 comment = f"""\
233 If this is not working for you, it is probably because you do not have write permissions for the repository. In which case you can instead tag reviewers by name in a comment by using `@` followed by their GitHub username.
235 If you have received no comments on your PR for a week, you can request a review by "ping"ing the PR by adding a comment “Ping”. The common courtesy "ping" rate is once a week. Please remember that you are asking for valuable time from other developers.
239 You can also ask questions in a comment on this PR, on the [LLVM Discord](https://discord.com/invite/xS7Z362) or on the [forums](https://discourse.llvm.org/)."""
240 self.pr.as_issue().create_comment(comment)
255 # added a new contributor greeting comment when they opened the PR.
257 for comment in self.pr.as_issue().get_comments():
258 if PRGreeter.COMMENT_TAG in comment.body:
260 elif PRBuildbotInformation.COMMENT_TAG in comment.body:
262 # add a second comment. This event will be rare in practice as it seems
275 comment = f"""\
279 Your changes will be combined with recent changes from other authors, then tested by our [build bots](https://lab.llvm.org/buildbot/). If there is a problem with a build, you may receive a report in an email or a comment on this PR.
289 self.pr.as_issue().create_comment(comment)
307 comment actions. We currently only support passing the commit hash
425 def make_ignore_comment(self, comment: str) -> str:
427 Returns the comment string with a prefix that will cause
428 a Github workflow to skip parsing this comment.
430 :param str comment: The comment to ignore
432 return "<!--IGNORE-->\n" + comment
434 def issue_notify_no_milestone(self, comment: List[str]) -> None:
436 "".join([">" + line for line in comment])
459 comment = issue.create_comment(message)
461 return comment
485 then add a comment requesting review of the backport and add them as
514 a comment is added to the issue saying that the cherry-pick failed.
646 comment = f"{mention} (or anyone else). If you would like to add a note about this fix in the release notes (completely optional). Please reply to this comment with a one or two sentence description of the fix. When you are done, please add the release:note label to this PR. "
648 pr.as_issue().create_comment(comment)
650 # Failed to create comment so emit file instead
652 data = [{"body": comment}]