From 8aac21fbc4f6aec3623edf2a1846fc9ee53f5cdb Mon Sep 17 00:00:00 2001 From: meteorgan Date: Thu, 16 Jan 2025 20:28:32 +0800 Subject: [PATCH] ci: skip running behavior tests when adding or modifying documentation (#5558) --- .github/scripts/test_behavior/plan.py | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/scripts/test_behavior/plan.py b/.github/scripts/test_behavior/plan.py index 0f32ec6e4f53..013f7d89882e 100755 --- a/.github/scripts/test_behavior/plan.py +++ b/.github/scripts/test_behavior/plan.py @@ -139,6 +139,7 @@ def calculate_hint(changed_files: list[str]) -> Hint: and not p.startswith("core/edge/") and not p.startswith("core/fuzz/") and not p.startswith("core/src/services/") + and not p.startswith("core/src/docs/") ): hint.core = True hint.binding_java = True