Merge branch 'main' into add-analyze-threads-flag
This commit is contained in:
commit
9133b2b54d
1 changed files with 2 additions and 2 deletions
4
.github/update-release-branch.py
vendored
4
.github/update-release-branch.py
vendored
|
|
@ -45,8 +45,8 @@ def open_pr(repo, all_commits, short_main_sha, branch_name):
|
||||||
print('Found ' + str(len(commits_without_pull_requests)) + ' commits not in a pull request')
|
print('Found ' + str(len(commits_without_pull_requests)) + ' commits not in a pull request')
|
||||||
|
|
||||||
# Sort PRs and commits by age
|
# Sort PRs and commits by age
|
||||||
sorted(pull_requests, key=lambda pr: pr.number)
|
pull_requests = sorted(pull_requests, key=lambda pr: pr.number)
|
||||||
sorted(commits_without_pull_requests, key=lambda c: c.commit.author.date)
|
commits_without_pull_requests = sorted(commits_without_pull_requests, key=lambda c: c.commit.author.date)
|
||||||
|
|
||||||
# Start constructing the body text
|
# Start constructing the body text
|
||||||
body = 'Merging ' + short_main_sha + ' into ' + LATEST_RELEASE_BRANCH
|
body = 'Merging ' + short_main_sha + ' into ' + LATEST_RELEASE_BRANCH
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue