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 602c1f9 commit ee856deCopy full SHA for ee856de
.github/workflows/update-a2a-types.yml
@@ -59,6 +59,7 @@ jobs:
59
echo "Codegen finished."
60
61
- name: Commit and push if generated file changed
62
+ if: github.ref == 'refs/heads/main'
63
run: |
64
set -euo pipefail
65
@@ -70,8 +71,8 @@ jobs:
70
71
else
72
echo "Changes detected in $GENERATED_FILE. Committing..."
73
# Configure git user for the commit
- git config user.name github-actions[bot]
74
- git config user.email 41898282+github-actions[bot]@users.noreply.github.com
+ git config user.name "github-actions"
75
+ git config user.email "github-actions@github.com"
76
77
# Add the generated file
78
git add "$GENERATED_FILE"
0 commit comments