path-sync 0.7.3__tar.gz → 0.7.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {path_sync-0.7.3 → path_sync-0.7.4}/PKG-INFO +1 -1
- {path_sync-0.7.3 → path_sync-0.7.4}/path_sync/__init__.py +1 -1
- {path_sync-0.7.3 → path_sync-0.7.4}/path_sync/_internal/cmd_copy.py +1 -1
- {path_sync-0.7.3 → path_sync-0.7.4}/pyproject.toml +1 -1
- {path_sync-0.7.3 → path_sync-0.7.4}/.gitignore +0 -0
- {path_sync-0.7.3 → path_sync-0.7.4}/LICENSE +0 -0
- {path_sync-0.7.3 → path_sync-0.7.4}/README.md +0 -0
- {path_sync-0.7.3 → path_sync-0.7.4}/path_sync/__main__.py +0 -0
- {path_sync-0.7.3 → path_sync-0.7.4}/path_sync/_internal/__init__.py +0 -0
- {path_sync-0.7.3 → path_sync-0.7.4}/path_sync/_internal/auto_merge.py +0 -0
- {path_sync-0.7.3 → path_sync-0.7.4}/path_sync/_internal/cmd_boot.py +0 -0
- {path_sync-0.7.3 → path_sync-0.7.4}/path_sync/_internal/cmd_dep_update.py +0 -0
- {path_sync-0.7.3 → path_sync-0.7.4}/path_sync/_internal/cmd_options.py +0 -0
- {path_sync-0.7.3 → path_sync-0.7.4}/path_sync/_internal/cmd_validate.py +0 -0
- {path_sync-0.7.3 → path_sync-0.7.4}/path_sync/_internal/file_utils.py +0 -0
- {path_sync-0.7.3 → path_sync-0.7.4}/path_sync/_internal/git_ops.py +0 -0
- {path_sync-0.7.3 → path_sync-0.7.4}/path_sync/_internal/header.py +0 -0
- {path_sync-0.7.3 → path_sync-0.7.4}/path_sync/_internal/log_capture.py +0 -0
- {path_sync-0.7.3 → path_sync-0.7.4}/path_sync/_internal/models.py +0 -0
- {path_sync-0.7.3 → path_sync-0.7.4}/path_sync/_internal/models_dep.py +0 -0
- {path_sync-0.7.3 → path_sync-0.7.4}/path_sync/_internal/prompt_utils.py +0 -0
- {path_sync-0.7.3 → path_sync-0.7.4}/path_sync/_internal/typer_app.py +0 -0
- {path_sync-0.7.3 → path_sync-0.7.4}/path_sync/_internal/validation.py +0 -0
- {path_sync-0.7.3 → path_sync-0.7.4}/path_sync/_internal/verify.py +0 -0
- {path_sync-0.7.3 → path_sync-0.7.4}/path_sync/_internal/yaml_utils.py +0 -0
- {path_sync-0.7.3 → path_sync-0.7.4}/path_sync/config.py +0 -0
- {path_sync-0.7.3 → path_sync-0.7.4}/path_sync/copy.py +0 -0
- {path_sync-0.7.3 → path_sync-0.7.4}/path_sync/dep_update.py +0 -0
- {path_sync-0.7.3 → path_sync-0.7.4}/path_sync/sections.py +0 -0
- {path_sync-0.7.3 → path_sync-0.7.4}/path_sync/validate_no_changes.py +0 -0
|
@@ -221,7 +221,7 @@ def _run_copy(config: SrcConfig, src_root: Path, dest_filter: str, opts: CopyOpt
|
|
|
221
221
|
|
|
222
222
|
|
|
223
223
|
def _close_stale_pr(dest_root: Path, copy_branch: str, opts: CopyOptions, config: SrcConfig) -> None:
|
|
224
|
-
if opts.dry_run or opts.no_pr or config.keep_pr_on_no_changes:
|
|
224
|
+
if opts.dry_run or opts.skip_commit or opts.no_pr or config.keep_pr_on_no_changes:
|
|
225
225
|
return
|
|
226
226
|
if git_ops.has_open_pr(dest_root, copy_branch):
|
|
227
227
|
git_ops.close_pr(dest_root, copy_branch, "Closing: source and destination are in sync, no changes needed")
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|