yandere_fe/tools/check-changelog

19 lines
539 B
Plaintext
Raw Normal View History

2023-04-28 15:12:38 -07:00
#!/bin/sh
echo "looking for change log"
git remote add upstream https://git.pleroma.social/pleroma/pleroma-fe.git
git fetch upstream ${CI_MERGE_REQUEST_TARGET_BRANCH_NAME}:refs/remotes/upstream/$CI_MERGE_REQUEST_TARGET_BRANCH_NAME
git diff --raw --no-renames upstream/$CI_MERGE_REQUEST_TARGET_BRANCH_NAME HEAD -- changelog.d | \
2024-02-22 08:10:30 -08:00
grep ' A\t' | grep '\.\(skip\|add\|remove\|change\|fix\|security\)$'
2023-04-28 15:12:38 -07:00
ret=$?
if [ $ret -eq 0 ]; then
echo "found a changelog entry"
exit 0
else
echo "changelog entry not found"
exit 1
fi