This is an automated email from the ASF dual-hosted git repository.

sbp pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tooling-trusted-releases.git


The following commit(s) were added to refs/heads/main by this push:
     new 7dab9ad  Fix the NOTICE file check
7dab9ad is described below

commit 7dab9adc7ce0132f47420be85d1ba3273c3b1f4b
Author: Sean B. Palmer <[email protected]>
AuthorDate: Fri Jan 9 17:46:28 2026 +0000

    Fix the NOTICE file check
---
 atr/tasks/checks/license.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/atr/tasks/checks/license.py b/atr/tasks/checks/license.py
index e91df0e..629e414 100644
--- a/atr/tasks/checks/license.py
+++ b/atr/tasks/checks/license.py
@@ -308,7 +308,7 @@ def _files_check_core_logic_notice(archive: tarzip.Archive, 
member: tarzip.Membe
     if not re.search(r"Copyright\s+(?:\d{4}|\d{4}-\d{4})\s+The Apache Software 
Foundation", content, re.MULTILINE):
         issues.append("missing or invalid copyright statement")
     if not re.search(
-        r"This product includes software developed at\s*\nThe Apache Software 
Foundation \(.*?\)", content, re.DOTALL
+        r"This product includes software developed at\s*\nThe Apache Software 
Foundation", content, re.DOTALL
     ):
         issues.append("missing or invalid foundation attribution")
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to