2023-04-28 22:12:38 +00: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
|
|
|
|
|
2023-05-03 02:17:02 +00:00
|
|
|
git diff --raw --no-renames upstream/$CI_MERGE_REQUEST_TARGET_BRANCH_NAME HEAD -- changelog.d | \
|
2023-04-28 22:12:38 +00:00
|
|
|
grep ' A\t' | grep '\.\(skip\|add\|remove\|fix\|security\)$'
|
|
|
|
ret=$?
|
|
|
|
|
|
|
|
if [ $ret -eq 0 ]; then
|
|
|
|
echo "found a changelog entry"
|
|
|
|
exit 0
|
|
|
|
else
|
|
|
|
echo "changelog entry not found"
|
|
|
|
exit 1
|
|
|
|
fi
|