We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9687278 commit 49936eaCopy full SHA for 49936ea
.github/workflows/docs-preview-create.yml
@@ -24,5 +24,10 @@ jobs:
24
- name: Sync
25
run: cd apps/svelte.dev && pnpm sync-docs --owner="${{ github.event.client_payload.owner }}" -p "${{ github.event.client_payload.package }}#${{ github.event.client_payload.branch }}"
26
27
+ - name: Configure Git
28
+ run: |
29
+ git config --global user.name "GitHub Actions Bot"
30
+ git config --global user.email "github-actions[bot]@users.noreply.github.com"
31
+
32
- name: Push
33
run: git add -A && git commit -m "sync docs" && git push -u origin sync/${{ github.event.client_payload.package }}/${{ github.event.client_payload.owner }}/${{ github.event.client_payload.branch }}
0 commit comments