Commit 7291dcd5 authored by Miguel Angel Reina Ortega's avatar Miguel Angel Reina Ortega
Browse files

Fix: look for TR or TS changed files

parent 5821040c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -151,7 +151,7 @@ https://forge.etsi.org/rep/cdm/pipeline-scripts/-/blob/main/common/Dockerfile.st
    changed_clause = Clause(empty,0,0,empty)
    
    for patched_file in mr.patch_set:
        if patched_file.source_file.startswith("a/TS"):
        if patched_file.source_file.startswith("a/TS") or patched_file.source_file.startswith("a/TR"):
            logging.debug(f"Looking at changes in {patched_file.source_file}")
            lines_added = 0
            lines_removed = 0