pleroma/tools/check-changelog

19 lines
536 B
Plaintext
Raw Normal View History

2022-08-28 17:13:36 +02:00
#!/bin/sh
echo "looking for change log"
2023-04-04 18:24:45 +02:00
2023-04-23 02:40:39 +02: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-03 04:16:00 +02:00
git diff --raw --no-renames upstream/$CI_MERGE_REQUEST_TARGET_BRANCH_NAME HEAD -- changelog.d | \
2023-11-08 18:27:46 +01:00
grep ' A\t' | grep '\.\(skip\|add\|remove\|fix\|security\|change\)$'
ret=$?
if [ $ret -eq 0 ]; then
echo "found a changelog entry"
2022-08-28 17:13:36 +02:00
exit 0
else
echo "changelog entry not found"
2022-08-28 17:13:36 +02:00
exit 1
fi