pleroma/tools/check-changelog

21 lines
619 B
Text
Raw Normal View History

2022-08-28 11:13:36 -04:00
#!/bin/sh
2025-11-07 19:44:34 +03:00
echo "adding ownership exception"
git config --global --add safe.directory $(pwd)
echo "looking for change log"
2023-04-04 12:24:45 -04:00
2023-04-22 20:40:39 -04:00
git remote add upstream https://git.pleroma.social/pleroma/pleroma.git
git fetch upstream ${CI_MERGE_REQUEST_TARGET_BRANCH_NAME}:refs/remotes/upstream/$CI_MERGE_REQUEST_TARGET_BRANCH_NAME
2023-05-02 22:16:00 -04:00
git diff --raw --no-renames upstream/$CI_MERGE_REQUEST_TARGET_BRANCH_NAME HEAD -- changelog.d | \
grep ' A\t' | grep '\.\(skip\|add\|remove\|fix\|security\|change\)$'
ret=$?
if [ $ret -eq 0 ]; then
echo "found a changelog entry"
2022-08-28 11:13:36 -04:00
exit 0
else
echo "changelog entry not found"
2022-08-28 11:13:36 -04:00
exit 1
fi