We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3655b4c commit bca1942Copy full SHA for bca1942
src/ansys/tools/repo_sync/repo_sync.py
@@ -254,7 +254,9 @@ def synchronize(
254
repo.index.commit(f"{'[skip ci] ' if skip_ci else ''}sync: add changes from local folder")
255
256
# Get a list of the files modified
257
- output = repo.git.diff("--compact-summary", f"{branch_checked_out}", f"{target_branch_name}")
+ output = repo.git.diff(
258
+ "--compact-summary", f"{branch_checked_out}", f"{target_branch_name}"
259
+ )
260
261
# If output is empty, avoid creating PR
262
if not output:
0 commit comments