diff options
| author | tusooa <tusooa@kazv.moe> | 2023-04-28 18:12:38 -0400 |
|---|---|---|
| committer | tusooa <tusooa@kazv.moe> | 2023-04-28 18:14:23 -0400 |
| commit | ca7b5b7deb736429b67dfb57f1c65e1100c86db7 (patch) | |
| tree | 2c71186606f8381aa6d6e62330593630c5deaec3 | |
| parent | 80eddb109986474811a014b4e04bb4f33117c88e (diff) | |
Add changelog checker
| -rw-r--r-- | .gitlab-ci.yml | 17 | ||||
| -rw-r--r-- | tools/check-changelog | 18 |
2 files changed, 35 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 305155d8..d6ba7f9a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,11 +4,28 @@ image: node:16 stages: + - check-changelog - lint - build - test - deploy +check-changelog: + stage: check-changelog + image: alpine + rules: + - if: $CI_MERGE_REQUEST_SOURCE_PROJECT_PATH == 'pleroma/pleroma-fe' && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME =~ /^renovate/ + when: never + - if: $CI_MERGE_REQUEST_SOURCE_PROJECT_PATH == 'pleroma/pleroma-fe' && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == 'weblate' + when: never + - if: $CI_MERGE_REQUEST_TARGET_BRANCH_NAME == "develop" + before_script: '' + after_script: '' + cache: {} + script: + - apk add git + - sh ./tools/check-changelog + lint: stage: lint script: 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 |
