mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-27 01:51:59 +00:00
fix commit labels for diff
This commit is contained in:
parent
fc9a5a725c
commit
ad38c433a1
@ -171,7 +171,7 @@ class PRInfo:
|
|||||||
|
|
||||||
self.diff_urls.append(
|
self.diff_urls.append(
|
||||||
f"https://api.github.com/repos/{GITHUB_REPOSITORY}/"
|
f"https://api.github.com/repos/{GITHUB_REPOSITORY}/"
|
||||||
f"compare/master...{self.head_ref}"
|
f"compare/master...{github_event['pull_request']['head']['label']}"
|
||||||
)
|
)
|
||||||
|
|
||||||
elif "commits" in github_event:
|
elif "commits" in github_event:
|
||||||
@ -218,11 +218,11 @@ class PRInfo:
|
|||||||
# to get files, changed in current HEAD
|
# to get files, changed in current HEAD
|
||||||
self.diff_urls.append(
|
self.diff_urls.append(
|
||||||
f"https://api.github.com/repos/{GITHUB_REPOSITORY}/"
|
f"https://api.github.com/repos/{GITHUB_REPOSITORY}/"
|
||||||
f"compare/master...{self.head_ref}"
|
f"compare/master...{pull_request['head']['label']}"
|
||||||
)
|
)
|
||||||
self.diff_urls.append(
|
self.diff_urls.append(
|
||||||
f"https://api.github.com/repos/{GITHUB_REPOSITORY}/"
|
f"https://api.github.com/repos/{GITHUB_REPOSITORY}/"
|
||||||
f"compare/{self.head_ref}...master"
|
f"compare/{pull_request['head']['label']}...master"
|
||||||
)
|
)
|
||||||
# Get release PR number.
|
# Get release PR number.
|
||||||
self.release_pr = get_pr_for_commit(self.base_ref, self.base_ref)[
|
self.release_pr = get_pr_for_commit(self.base_ref, self.base_ref)[
|
||||||
@ -235,7 +235,7 @@ class PRInfo:
|
|||||||
# itself, but as well files changed since we branched out
|
# itself, but as well files changed since we branched out
|
||||||
self.diff_urls.append(
|
self.diff_urls.append(
|
||||||
f"https://api.github.com/repos/{GITHUB_REPOSITORY}/"
|
f"https://api.github.com/repos/{GITHUB_REPOSITORY}/"
|
||||||
f"compare/{self.head_ref}...master"
|
f"compare/{pull_request['head']['label']}...master"
|
||||||
)
|
)
|
||||||
else:
|
else:
|
||||||
print("event.json does not match pull_request or push:")
|
print("event.json does not match pull_request or push:")
|
||||||
|
Loading…
Reference in New Issue
Block a user