From 5d45751d38669be0d15a952097a120d2ef1767b8 Mon Sep 17 00:00:00 2001 From: Jens Reidel Date: Mon, 20 Oct 2025 19:25:45 +0200 Subject: [PATCH] ci: Add tag to skip kconfig checks Signed-off-by: Jens Reidel Part-of: --- .ci/lib/check_changed_kernels.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.ci/lib/check_changed_kernels.py b/.ci/lib/check_changed_kernels.py index 88a46cc08..045f72fea 100755 --- a/.ci/lib/check_changed_kernels.py +++ b/.ci/lib/check_changed_kernels.py @@ -88,6 +88,9 @@ if __name__ == "__main__": if len(pkgnames) == 0: print("No kernels changed in this branch") exit(0) + elif common.commit_message_has_string("[ci:skip-kconfigcheck]"): + print("WARNING: not checking kernel configs ([ci:skip-kconfigcheck])") + exit(0) last_failed = check_kconfig(pkgnames)