Skip to content

Commit 07b5f60

Browse files
committed
disable job filtering and commit status for community pr
1 parent 1642a36 commit 07b5f60

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ci/workflows/pull_request_external.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
disable_dockers_build=True,
9393
enable_dockers_manifest_merge=False,
9494
secrets=[],
95-
enable_job_filtering_by_changes=True,
95+
enable_job_filtering_by_changes=False, # TODO: Change this back?
9696
enable_cache=False,
9797
enable_report=False,
9898
enable_cidb=False,
@@ -107,6 +107,9 @@
107107
post_hooks=[],
108108
)
109109

110+
for job in workflow.jobs:
111+
job.enable_commit_status = False
112+
110113
WORKFLOWS = [
111114
workflow,
112115
]

0 commit comments

Comments
 (0)