Skip to content

Commit

Permalink
More logs
Browse files Browse the repository at this point in the history
  • Loading branch information
tomuben committed Sep 26, 2024
1 parent 7889847 commit 57b0385
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions exasol_script_languages_container_ci/lib/ci.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,10 @@

def get_all_affected_files(git_access: GitAccess, base_branch: str) -> Set[str]:
base_last_commit_sha = git_access.get_head_commit_sha_of_branch(base_branch)
logging.warning(f"Base last commit = {base_last_commit_sha}")
changed_files = set()
for commit in git_access.get_last_commits():
logging.warning(f"Current commit = {commit}")
if commit == base_last_commit_sha:
break
changed_files.update(git_access.get_files_of_commit(commit))
Expand Down

0 comments on commit 57b0385

Please sign in to comment.