Skip to content

Commit 5300efc

Browse files
authored
fix: make GPG signing optional in wiki-sync workflow (#110)
- 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.
1 parent cf78d2c commit 5300efc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/wiki-sync.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ jobs:
5353
["docs/TESTING_APPROACH.md"]="wiki/Testing-Approach.md"
5454
["docs/SERVICE_CATALOG.md"]="wiki/Service-Catalog.md"
5555
["docs/SERVICE_PROFILES.md"]="wiki/Service-Profiles.md"
56-
["docs/MIGRATION_GUIDE.md"]="wiki/Migration-Guide.md"
5756
["docs/UPGRADE_GUIDE.md"]="wiki/Upgrade-Guide.md"
5857
["docs/ROLLBACK_PROCEDURES.md"]="wiki/Rollback-Procedures.md"
5958
["README.md"]="wiki/Home.md"
@@ -106,6 +105,7 @@ jobs:
106105
passphrase: ${{ secrets.GPG_PASSPHRASE }}
107106
git_user_signingkey: true
108107
git_commit_gpgsign: true
108+
continue-on-error: true
109109

110110
- name: Create Pull Request for wiki changes
111111
if: steps.check_changes.outputs.changes == 'true'

0 commit comments

Comments
 (0)