This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch v3-2-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v3-2-test by this push:
new 88155f852e8 [v3-2-test] MD files only optimization only on PUSH
(#65181) (#65182)
88155f852e8 is described below
commit 88155f852e8295be4612c7d4b0aac2eeb972536a
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Tue Apr 14 00:28:07 2026 +0200
[v3-2-test] MD files only optimization only on PUSH (#65181) (#65182)
When we merge to v3-2-test it usually triggers full build, however
when there is only an .md file change (which happens for
AGENTS.md updates for example) - it should not trigger the
complete rebuild.
(cherry picked from commit c8ebd28bdae9a1eb6f0e533a832c4d725b1efa74)
Co-authored-by: Jarek Potiuk <[email protected]>
---
dev/breeze/src/airflow_breeze/utils/selective_checks.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev/breeze/src/airflow_breeze/utils/selective_checks.py
b/dev/breeze/src/airflow_breeze/utils/selective_checks.py
index 19506d490b6..ca7fbef3a3d 100644
--- a/dev/breeze/src/airflow_breeze/utils/selective_checks.py
+++ b/dev/breeze/src/airflow_breeze/utils/selective_checks.py
@@ -594,7 +594,7 @@ class SelectiveChecks:
def _should_run_all_tests_and_versions(self) -> bool:
if self._github_event in [GithubEvents.PUSH, GithubEvents.SCHEDULE,
GithubEvents.WORKFLOW_DISPATCH]:
- if self.only_text_non_doc_files_changed:
+ if self.only_text_non_doc_files_changed and self._github_event ==
GithubEvents.PUSH:
console_print(
f"[warning]Only text non doc files changed in
{self._github_event}, skip full tests[/]"
)