Skip to content

Commit 252b3c1

Browse files
authored
Added commit auto-signing for easier maintenance
1 parent ab64d38 commit 252b3c1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/sync-changes.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ jobs:
4545
- name: Config committer
4646
run: |
4747
gpg --batch --import <(echo "${{ secrets.GPG_PRIVATE_KEY }}")
48+
git config --global commit.gpgsign true
4849
git config --global user.name "kudo-sync-bot"
4950
git config --global user.email "[email protected]"
5051
git config --global user.signingkey "${{ secrets.GPG_PRIVATE_ID }}"
@@ -53,12 +54,12 @@ jobs:
5354
run: |
5455
cd ${{ github.workspace }}/adamlui/perplexity-omnibox
5556
git add .
56-
git commit -S -n -m "$ESCAPED_MSG ↞ [auto-sync from \`adamlui/perplexity-omnibox\`]" || true
57+
git commit -n -m "$ESCAPED_MSG ↞ [auto-sync from \`adamlui/perplexity-omnibox\`]" || true
5758
git push
5859
5960
- name: Push changes to adamlui/ai-apps
6061
run: |
6162
cd ${{ github.workspace }}/adamlui/ai-apps
6263
git add .
63-
git commit -S -n -m "$ESCAPED_MSG ↞ [auto-sync from \`adamlui/perplexity-omnibox\`]" || true
64+
git commit -n -m "$ESCAPED_MSG ↞ [auto-sync from \`adamlui/perplexity-omnibox\`]" || true
6465
git push

0 commit comments

Comments
 (0)