5 lines
142 B
Bash
Executable file
5 lines
142 B
Bash
Executable file
#!/bin/bash
|
|
git cliff --bump > CHANGELOG.md
|
|
if ! git diff --quiet -- CHANGELOG.md; then
|
|
git commit --amend --no-edit --quiet CHANGELOG.md
|
|
fi
|