From 497a2eeda29b31602249e1a407a58d52e782da06 Mon Sep 17 00:00:00 2001 From: Joseph Magly <1159087+jmagly@users.noreply.github.com> Date: Sun, 16 Aug 2026 17:39:55 -0400 Subject: [PATCH] fix: distinguish signing key id from fingerprint --- .aiwg/aiwg.config | 3 ++- tests/test_aiwg_workspace_contracts.py | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.aiwg/aiwg.config b/.aiwg/aiwg.config index 80155a9..fa7bbf9 100644 --- a/.aiwg/aiwg.config +++ b/.aiwg/aiwg.config @@ -123,7 +123,8 @@ }, "signing": { "format": "openpgp", - "key": "62297562B1C7053088F405DB0117DAAA677A5BF2", + "key": "0117DAAA677A5BF2", + "fingerprint": "62297562B1C7053088F405DB0117DAAA677A5BF2", "enforce": "commits" }, "require_signed_commits": true, diff --git a/tests/test_aiwg_workspace_contracts.py b/tests/test_aiwg_workspace_contracts.py index 23f57cb..3dcde87 100644 --- a/tests/test_aiwg_workspace_contracts.py +++ b/tests/test_aiwg_workspace_contracts.py @@ -84,7 +84,8 @@ def test_workspace_authority_and_delivery_permissions_remain_explicit(): }, "signing": { "format": "openpgp", - "key": "62297562B1C7053088F405DB0117DAAA677A5BF2", + "key": "0117DAAA677A5BF2", + "fingerprint": "62297562B1C7053088F405DB0117DAAA677A5BF2", "enforce": "commits", }, "require_signed_commits": True,