This is an automated email from the ASF dual-hosted git repository.
janc pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-core.git
The following commit(s) were added to refs/heads/master by this push:
new c553f0a88 ci: Make check_license.py more verbose
c553f0a88 is described below
commit c553f0a8867b908f51a4a20e6f75c6aacdf59f79
Author: Szymon Janc <[email protected]>
AuthorDate: Mon Feb 16 15:22:00 2026 +0100
ci: Make check_license.py more verbose
List files that are to be checked.
---
.github/check_license.py | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/.github/check_license.py b/.github/check_license.py
index 1ec8b2b08..b13e6addc 100755
--- a/.github/check_license.py
+++ b/.github/check_license.py
@@ -123,6 +123,12 @@ def main() -> bool:
upstream = mb[0]
files = run_cmd(f"git diff --diff-filter=AM --name-only {upstream}
{commit}")
+
+ print("Files to check:")
+ for file_name in sorted(files):
+ print(" " + file_name)
+ print("Running license check...")
+
result_rat_check = run_rat_check(files)
files = get_license_files(LICENSE_FILE)
@@ -154,6 +160,8 @@ def main() -> bool:
print()
return False
+ print("License check completed.")
+
return True