Skip to content

Commit

Permalink
Merge pull request #55 from LFDT-Lockness/update-changelog-script
Browse files Browse the repository at this point in the history
Update changelog script
  • Loading branch information
survived authored Oct 17, 2024
2 parents 3020c02 + 572d463 commit 29bd8f7
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions .github/changelog.sh
Original file line number Diff line number Diff line change
@@ -1,19 +1,22 @@
#!/usr/bin/env bash

m_branch=m;
changelog_file=CHANGELOG.md;

# fetch master since we might be in a shallow clone
git fetch origin "$m_branch:$m_branch" --depth=1

changed=0;
dir=.;
# check if version changed
if git diff "$m_branch" -- "Cargo.toml" | grep -q "^-version = "; then
# check if changelog updated
if git diff --exit-code --no-patch "$m_branch" -- "CHANGELOG.md"; then
echo "$dir version changed, but CHANGELOG.md is not updated"
changed=1;
for log in "$changelog_file" */"$changelog_file"; do
dir=$(dirname "$log");
# check if version changed
if git diff "$m_branch" -- "$dir/Cargo.toml" | grep -q "^-version = "; then
# check if changelog updated
if git diff --exit-code --no-patch "$m_branch" -- "$log"; then
echo "$dir version changed, but $log is not updated"
changed=1;
fi
fi
fi
done

exit "$changed";

0 comments on commit 29bd8f7

Please sign in to comment.