Lines Matching full:issue

26 This issue may be a good introductory issue for people new to working on LLVM. If you would like to work on this issue, your first steps are:
28 1. Check that no other contributor has already been assigned to this issue. If you believe that no one is actually working on it despite an assignment, ping the person. After one week without a response, the assignee may be changed.
29 1. In the comments of this issue, request for it to be assigned to you, or just create a [pull request](https://github.com/llvm/llvm-project/pulls) after following the steps below. [Mention](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue) this issue in the description of the pull request.
30 1. Fix the issue locally.
34 1. Open a [pull request](https://github.com/llvm/llvm-project/pulls) to the [upstream repository](https://github.com/llvm/llvm-project) on GitHub. Detailed instructions can be found [in GitHub's documentation](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request). [Mention](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue) this issue in the description of the pull request.
36 If you have any further questions about this issue, don't hesitate to ask via a comment in the thread below.
48 # If the description of an issue/pull request is empty, the Github API
57 # '#' followed by digits is considered an issue number
70 self.issue = self.repo.get_issue(issue_number)
71 self._team_name = "issue-subscribers-{}".format(label_name).lower()
80 if team.slug == "issue-subscribers-good-first-issue":
82 self.issue.create_comment(comment)
84 body = escape_description(self.issue.body)
88 Author: {self.issue.user.name} ({self.issue.user.login})
95 self.issue.create_comment(comment)
261 # When an issue is reopened, then closed as merged again, we should not
388 def issue(self) -> github.Issue.Issue:
399 return "issue{}".format(self.issue_number)
403 issue = self.issue
404 milestone = issue.milestone
416 self.issue.create_comment(
421 self.issue.create_comment(
438 self.issue.create_comment(self.make_ignore_comment(message))
458 issue = self.issue
459 comment = issue.create_comment(message)
460 issue.add_to_labels(self.CHERRY_PICK_FAILED_LABEL)
468 return self.issue.create_comment(message)
471 if self.CHERRY_PICK_FAILED_LABEL in [l.name for l in self.issue.labels]:
472 self.issue.remove_from_labels(self.CHERRY_PICK_FAILED_LABEL)
514 a comment is added to the issue saying that the cherry-pick failed.
552 the issue represented by `self.issue_number` For example if the milestone
584 pull.as_issue().edit(milestone=self.issue.milestone)
587 # issue that was used to request the cherry-pick
588 self.issue.edit(state="closed", state_reason="completed")
668 issue_subscriber_parser = subparsers.add_parser("issue-subscriber")
670 issue_subscriber_parser.add_argument("--issue-number", type=int, required=True)
674 pr_subscriber_parser.add_argument("--issue-number", type=int, required=True)
677 pr_greeter_parser.add_argument("--issue-number", type=int, required=True)
680 pr_buildbot_information_parser.add_argument("--issue-number", type=int, required=True)
691 "--issue-number", type=int, required=True, help="The issue number to update"
736 if args.command == "issue-subscriber":