Skip to content

Commit

Permalink
Addendum: Refactor commit message handling in merge_pr function
Browse files Browse the repository at this point in the history
Change-Id: I7c738b31b8f5991bc5f93118285c561c2a4719af
  • Loading branch information
Villő Szűcs committed Dec 1, 2023
1 parent b9a76f8 commit abf15eb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion zk-merge-pr.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,8 @@ def merge_pr(pr_num, title, pr_repo_desc):
if json_commits and isinstance(json_commits, list):
for commit in json_commits:
commit_message = commit['commit']['message']
merge_message += [commit_message]
if commit_message != title:
merge_message += [commit_message]

# Check for disapproval reviews.
json_reviewers = get_json(f"https://api.github.com/repos/{PUSH_REMOTE_NAME}/{PROJECT_NAME}/pulls/{pr_num}/reviews")
Expand Down

0 comments on commit abf15eb

Please sign in to comment.