Skip to content

Commit a61a4a4

Browse files
committed
ci: Fix git username/email for github actions
1 parent 14e4019 commit a61a4a4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/update-a2a-types.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Update A2A Schema from Specification
22

33
on:
44
schedule:
5-
- cron: "0 0 * * *"
5+
- cron: '0 0 * * *'
66
workflow_dispatch:
77

88
jobs:
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Python
1717
uses: actions/setup-python@v5
1818
with:
19-
python-version: "3.13"
19+
python-version: '3.13'
2020

2121
- name: Install uv
2222
run: curl -LsSf https://astral.sh/uv/install.sh | sh
@@ -71,8 +71,8 @@ jobs:
7171
else
7272
echo "Changes detected in $GENERATED_FILE. Committing..."
7373
# Configure git user for the commit
74-
git config user.name "github-actions"
75-
git config user.email "github-actions@github.com"
74+
git config user.name github-actions[bot]
75+
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
7676
7777
# Add the generated file
7878
git add "$GENERATED_FILE"

0 commit comments

Comments
 (0)