Lines Matching full:for
6 # Build a message to notify maintainers/reviewers for a PR. Invoked by the
9 # handles of the people responsible for the modified files. Handles already
11 # and maintainers for 'THE REST'.
33 All entries are parsed, but handles listed for 'THE REST' are removed
39 for line in output.splitlines():
65 print("# For information: all relevant maintainers/reviewers: " +
66 " ".join(f"@{h}" for h in allh))
69 " ".join(f"@{h}" for h in handles))
72 " ".join(f"@{h}" for h in the_rest_handles))
90 github_env = all(os.getenv(var) for var in ("REPO", "PR_NUMBER",
106 " ".join(f"@{h}" for h in handles_to_mention))
114 for comment in pr.get_issue_comments():
118 " ".join(f"@{h}" for h in existing_handles))
122 skip_handles.update(a.login for a in pr.assignees)
124 skip_handles.update(r.login for r in requested_reviewers)
127 " ".join(f"@{h}" for h in skip_handles))
132 message = "FYI " + " ".join(f"@{h}" for h in new_handles)