This is an automated email from the ASF dual-hosted git repository.
meonkeys pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/fineract-site.git
The following commit(s) were added to refs/heads/asf-site by this push:
new b284523 verify all commits are signed
b284523 is described below
commit b284523d0aaae2ffa068cabbd60f9f1feb452cf8
Author: Adam Monsen <[email protected]>
AuthorDate: Mon Feb 23 13:34:02 2026 -0800
verify all commits are signed
see https://issues.apache.org/jira/browse/FINERACT-2177
This is patch from https://github.com/apache/fineract/pull/5431 , minus the
change to CONTRIBUTING.md (since we don't have one of those in this repo, and
probably don't need one) and substituting `origin/develop` for `origin/main`.
---
.github/workflows/verify-commits.yml | 45 +++++++++++++++++
scripts/verify-signed-commits.sh | 97 ++++++++++++++++++++++++++++++++++++
2 files changed, 142 insertions(+)
diff --git a/.github/workflows/verify-commits.yml
b/.github/workflows/verify-commits.yml
new file mode 100644
index 0000000..913c4ca
--- /dev/null
+++ b/.github/workflows/verify-commits.yml
@@ -0,0 +1,45 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+name: Signed Commits Check
+
+on:
+ pull_request:
+ types: [opened, synchronize, reopened]
+
+permissions:
+ contents: read
+
+jobs:
+ verify-signatures:
+ name: Verify Commit Signatures
+ runs-on: ubuntu-slim
+ timeout-minutes: 1
+ steps:
+ - uses: actions/checkout@v6
+ with:
+ fetch-depth: 0
+
+ - name: Fetch base branch
+ run: git fetch origin ${{ github.base_ref }}
+
+ - name: Verify signatures
+ run: |
+ scripts/verify-signed-commits.sh \
+ --base-ref origin/${{ github.base_ref }} \
+ --head-ref ${{ github.sha }} \
+ --strict
diff --git a/scripts/verify-signed-commits.sh b/scripts/verify-signed-commits.sh
new file mode 100755
index 0000000..6a6785d
--- /dev/null
+++ b/scripts/verify-signed-commits.sh
@@ -0,0 +1,97 @@
+#!/bin/bash
+
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+# Usage: ./scripts/verify-signed-commits.sh [--base-ref <ref>] [--head-ref
<ref>] [--strict] [--help]
+set -e
+
+BASE_REF="origin/main"
+HEAD_REF="HEAD"
+STRICT_MODE=false
+
+show_help() {
+ cat << 'EOF'
+Usage: ./scripts/verify-signed-commits.sh [OPTIONS]
+
+Options:
+ --base-ref <ref> Base reference (default: origin/main)
+ --head-ref <ref> Head reference (default: HEAD)
+ --strict Exit with error if unsigned commits found
+ --help Show this help
+EOF
+}
+
+while [[ $# -gt 0 ]]; do
+ case $1 in
+ --base-ref) BASE_REF="$2"; shift 2 ;;
+ --head-ref) HEAD_REF="$2"; shift 2 ;;
+ --strict) STRICT_MODE=true; shift ;;
+ --help) show_help; exit 0 ;;
+ *) echo "Unknown option: $1"; show_help; exit 1 ;;
+ esac
+done
+
+MERGE_BASE=$(git merge-base "$BASE_REF" "$HEAD_REF" 2>/dev/null || echo "")
+if [ -z "$MERGE_BASE" ]; then
+ COMMIT_RANGE="$HEAD_REF~10..$HEAD_REF"
+else
+ COMMIT_RANGE="$MERGE_BASE..$HEAD_REF"
+fi
+
+echo "Verifying commit signatures in range: $COMMIT_RANGE"
+
+COMMITS=$(git log --format="%H%x1f%G?%x1f%an%x1f%s" "$COMMIT_RANGE"
2>/dev/null || echo "")
+if [ -z "$COMMITS" ]; then
+ echo "No commits to verify."
+ exit 0
+fi
+
+UNSIGNED_COUNT=0
+
+while IFS=$'\x1f' read -r HASH SIG_STATUS AUTHOR SUBJECT; do
+ [ -z "$HASH" ] && continue
+ SHORT_HASH="${HASH:0:7}"
+
+ case "$SIG_STATUS" in
+ N)
+ UNSIGNED_COUNT=$((UNSIGNED_COUNT + 1))
+ if [ -n "$GITHUB_ACTIONS" ]; then
+ echo "::error title=Unsigned Commit::Commit $SHORT_HASH by
$AUTHOR is not signed."
+ else
+ echo "❌ Unsigned: $SHORT_HASH - $SUBJECT ($AUTHOR)"
+ fi
+ ;;
+ *)
+ echo "✅ Signed: $SHORT_HASH - $SUBJECT"
+ ;;
+ esac
+done <<< "$COMMITS"
+
+echo ""
+echo "Summary: $UNSIGNED_COUNT unsigned commit(s) found."
+
+if [ "$STRICT_MODE" = true ] && [ "$UNSIGNED_COUNT" -gt 0 ]; then
+ if [ -n "$GITHUB_ACTIONS" ]; then
+ echo "::error::$UNSIGNED_COUNT unsigned commit(s). See
CONTRIBUTING.md#signing-your-commits"
+ else
+ echo "❌ $UNSIGNED_COUNT unsigned commit(s). See
CONTRIBUTING.md#signing-your-commits"
+ fi
+ exit 1
+fi
+
+exit 0