mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-29 11:02:08 +00:00
Merge pull request #43862 from ClickHouse/rerun-docs-check-on-edited
Rerun DocsCheck on edited PR description
This commit is contained in:
commit
472c5a835b
@ -13,14 +13,16 @@ import jwt
|
|||||||
import requests # type: ignore
|
import requests # type: ignore
|
||||||
import boto3 # type: ignore
|
import boto3 # type: ignore
|
||||||
|
|
||||||
PULL_REQUEST_CI = "PullRequestCI"
|
|
||||||
|
NEED_RERUN_ON_EDITED = {
|
||||||
|
"PullRequestCI",
|
||||||
|
"DocsCheck",
|
||||||
|
}
|
||||||
|
|
||||||
NEED_RERUN_OR_CANCELL_WORKFLOWS = {
|
NEED_RERUN_OR_CANCELL_WORKFLOWS = {
|
||||||
PULL_REQUEST_CI,
|
|
||||||
"DocsCheck",
|
|
||||||
"DocsReleaseChecks",
|
"DocsReleaseChecks",
|
||||||
"BackportPR",
|
"BackportPR",
|
||||||
}
|
}.union(NEED_RERUN_ON_EDITED)
|
||||||
|
|
||||||
MAX_RETRY = 5
|
MAX_RETRY = 5
|
||||||
|
|
||||||
@ -334,7 +336,7 @@ def main(event):
|
|||||||
most_recent_workflow = workflow_descriptions[-1]
|
most_recent_workflow = workflow_descriptions[-1]
|
||||||
if (
|
if (
|
||||||
most_recent_workflow.status == "completed"
|
most_recent_workflow.status == "completed"
|
||||||
and most_recent_workflow.name == PULL_REQUEST_CI
|
and most_recent_workflow.name in NEED_RERUN_ON_EDITED
|
||||||
):
|
):
|
||||||
print(
|
print(
|
||||||
"The PR's body is changed and workflow is finished. "
|
"The PR's body is changed and workflow is finished. "
|
||||||
|
Loading…
Reference in New Issue
Block a user