You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fix output file list to use spaces instead of commas @goruha (#35)
## what
- Change the `file` output variable separator from commas to spaces (`${files// /,}` → `${files// / }`)
why
The previous substitution replaced spaces with commas, which produced an incorrect file pattern for downstream steps (e.g. git-auto-commit-action's file_pattern expects space-separated paths)
This was a no-op substitution bug — the intent was to preserve space-separated file paths, not convert them to comma-separated
references
Downstream usage in stefanzweifel/git-auto-commit-actionfile_pattern input