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
Prevent shell command execution from commit messages (#15)
Previously, commit messages were passed via a variable, which allowed
embedded shell commands (e.g. `$(...)`) to be executed during parsing.
For example, this happened in this run:
https://github.com/tarantool/sdvg/actions/runs/16798902022/job/47575402000
Now the message is fetched directly via `git` and safely piped through
`sed`, ensuring arbitrary code is not executed.
0 commit comments