Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/wiki-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,15 @@ jobs:
echo "No wiki changes detected"
fi

- name: Import GPG key for signing
if: steps.check_changes.outputs.changes == 'true'
uses: crazy-max/ghaction-import-gpg@v6
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_PASSPHRASE }}
git_user_signingkey: true
git_commit_gpgsign: true

- name: Create Pull Request for wiki changes
if: steps.check_changes.outputs.changes == 'true'
uses: peter-evans/create-pull-request@v6
Expand Down Expand Up @@ -135,6 +144,7 @@ jobs:

**Note**: This is an automated PR created by the Wiki Sync workflow.
labels: documentation, automated
signoff: true

- name: Summary
if: steps.check_changes.outputs.changes == 'true'
Expand Down
Loading