From a14bf0073ec8b988848fdbdc657fa6113f65f9a9 Mon Sep 17 00:00:00 2001 From: Norm Brandinger Date: Tue, 30 Dec 2025 08:26:20 -0500 Subject: [PATCH] fix: make GPG signing optional in wiki-sync workflow - Add continue-on-error: true to GPG import step - Remove reference to deleted MIGRATION_GUIDE.md from sync map The GPG_PRIVATE_KEY secret is not configured, causing the workflow to fail. This change allows the workflow to continue without GPG signing while still creating the PR for wiki updates. --- .github/workflows/wiki-sync.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/wiki-sync.yml b/.github/workflows/wiki-sync.yml index 50ce18f..f87122a 100644 --- a/.github/workflows/wiki-sync.yml +++ b/.github/workflows/wiki-sync.yml @@ -53,7 +53,6 @@ jobs: ["docs/TESTING_APPROACH.md"]="wiki/Testing-Approach.md" ["docs/SERVICE_CATALOG.md"]="wiki/Service-Catalog.md" ["docs/SERVICE_PROFILES.md"]="wiki/Service-Profiles.md" - ["docs/MIGRATION_GUIDE.md"]="wiki/Migration-Guide.md" ["docs/UPGRADE_GUIDE.md"]="wiki/Upgrade-Guide.md" ["docs/ROLLBACK_PROCEDURES.md"]="wiki/Rollback-Procedures.md" ["README.md"]="wiki/Home.md" @@ -106,6 +105,7 @@ jobs: passphrase: ${{ secrets.GPG_PASSPHRASE }} git_user_signingkey: true git_commit_gpgsign: true + continue-on-error: true - name: Create Pull Request for wiki changes if: steps.check_changes.outputs.changes == 'true'