Auto: fix/pr26-review-suggestions #27
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "fix/pr26-review-suggestions"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Automated PR for branch
fix/pr26-review-suggestions.Approved
Clean DRY refactoring that consolidates a duplicated untracked-files warning into a shared helper script, fixes the ruff auto-format step to gracefully skip commits when there are no changes, and adds a sensible prompt instruction preventing Claude from running git commands. No bugs, security issues, or bad practices found.
Suggestions
shell: bashon the "Configure git" step (or settingdefaults.run.shell: bashat the job level) to ensure the heredoc andwarn-untrackedscript creation always use bash, matching the explicitshell: bashused by the calling steps. Currently the step has no explicit shell, so it falls back tosh, which works but is inconsistent with the rest of the workflow.warn-untrackedscript usesechoto output the warning but doesn't exit non-zero. This is correct for a warning, but adding a brief inline comment like# warn only, don't failwould make the intent clearer for future maintainers.