Skip to content

Commit aeed6e5

Browse files
committed
Add explicit Git user configuration in documentation update workflow
- Configure Git user name and email before committing - Ensure proper user attribution for automated documentation updates
1 parent 6538edf commit aeed6e5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/update_docs.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,7 @@ jobs:
4444
- run: |
4545
cd html-en
4646
git add .
47+
git config user.name "Chivier"
48+
git config user.email "[email protected]"
4749
git commit -m 'update docs'
48-
git push
50+
git push -u origin main

0 commit comments

Comments
 (0)