ci: Add tag to skip kconfig checks

Signed-off-by: Jens Reidel <adrian@postmarketos.org>
Part-of: <https://gitlab.postmarketos.org/postmarketOS/pmaports/-/merge_requests/7220>
This commit is contained in:
Jens Reidel 2025-10-20 19:25:45 +02:00 committed by The Friendly Merge Bot
parent edef8326f6
commit 5d45751d38
No known key found for this signature in database

View file

@ -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)