aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authortusooa <tusooa@kazv.moe>2023-04-28 18:12:38 -0400
committertusooa <tusooa@kazv.moe>2023-04-28 18:14:23 -0400
commitca7b5b7deb736429b67dfb57f1c65e1100c86db7 (patch)
tree2c71186606f8381aa6d6e62330593630c5deaec3 /tools
parent80eddb109986474811a014b4e04bb4f33117c88e (diff)
Add changelog checker
Diffstat (limited to 'tools')
-rw-r--r--tools/check-changelog18
1 files changed, 18 insertions, 0 deletions
diff --git a/tools/check-changelog b/tools/check-changelog
new file mode 100644
index 00000000..86758d1d
--- /dev/null
+++ b/tools/check-changelog
@@ -0,0 +1,18 @@
+#!/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 upstream/$CI_MERGE_REQUEST_TARGET_BRANCH_NAME HEAD -- changelog.d | \
+ 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