We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7ae8c32 + 8e098cb commit 9133b2bCopy full SHA for 9133b2b
1 file changed
.github/update-release-branch.py
@@ -45,8 +45,8 @@ def open_pr(repo, all_commits, short_main_sha, branch_name):
45
print('Found ' + str(len(commits_without_pull_requests)) + ' commits not in a pull request')
46
47
# Sort PRs and commits by age
48
- sorted(pull_requests, key=lambda pr: pr.number)
49
- sorted(commits_without_pull_requests, key=lambda c: c.commit.author.date)
+ pull_requests = sorted(pull_requests, key=lambda pr: pr.number)
+ commits_without_pull_requests = sorted(commits_without_pull_requests, key=lambda c: c.commit.author.date)
50
51
# Start constructing the body text
52
body = 'Merging ' + short_main_sha + ' into ' + LATEST_RELEASE_BRANCH
0 commit comments