Skip to content

Commit 1b58bcc

Browse files
committed
Print PR information to debug release matching logic
1 parent 3d42ead commit 1b58bcc

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

scripts/release/update-release-assets.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,8 @@ def main(args: 'argparse.Namespace') -> int:
255255
print(f"Error: PR {pull_request.url} is not open", file=sys.stderr)
256256
return 1
257257

258+
print(f"Found PR {pull_request.url} based on {pull_request.base.ref}")
259+
258260
rc_branch_regex = r"^rc/(?P<version>.*)$"
259261
rc_branch_match = re.match(rc_branch_regex, pull_request.base.ref)
260262
if not rc_branch_match:

0 commit comments

Comments
 (0)