diff --git a/.github/workflows/wiki-sync.yml b/.github/workflows/wiki-sync.yml index 743b630..d932805 100644 --- a/.github/workflows/wiki-sync.yml +++ b/.github/workflows/wiki-sync.yml @@ -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 @@ -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'