Skip to content

Commit

Permalink
Merge branch 'main' into add-analyze-threads-flag
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Kalyvitis authored and GitHub committed Jun 23, 2020
2 parents 7ae8c32 + 8e098cb commit 9133b2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/update-release-branch.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')

# Sort PRs and commits by age
sorted(pull_requests, key=lambda pr: pr.number)
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)

# Start constructing the body text
body = 'Merging ' + short_main_sha + ' into ' + LATEST_RELEASE_BRANCH
Expand Down

0 comments on commit 9133b2b

Please sign in to comment.