We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5ac6aa commit 0578eadCopy full SHA for 0578ead
utils/update_checkout/update_checkout/update_checkout.py
@@ -700,7 +700,7 @@ def main():
700
701
cross_repos_pr = {}
702
if github_comment:
703
- regex_pr = r'(apple/[-a-zA-Z0-9_]+/pull/\d+|apple/[-a-zA-Z0-9_]+#\d+)'
+ regex_pr = r'(?:apple/|swiftlang/)([-a-zA-Z0-9_]+/pull/\d+|[-a-zA-Z0-9_]+#\d+)'
704
repos_with_pr = re.findall(regex_pr, github_comment)
705
print("Found related pull requests:", str(repos_with_pr))
706
repos_with_pr = [pr.replace('/pull/', '#') for pr in repos_with_pr]
0 commit comments