We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a9f033 commit 7f2b77eCopy full SHA for 7f2b77e
1 file changed
.github/workflows/generator.yml
@@ -48,12 +48,14 @@ jobs:
48
- name: Configure Git
49
if: steps.check_changes.outputs.changed == 'true'
50
run: |
51
- git config --local user.email "action@github.com"
52
- git config --local user.name "GitHub Action"
+ git config --global user.email 'actions@github.com'
+ git config --global user.name 'GitHub Actions Bot'
53
54
- name: Commit and push changes
55
56
+ env:
57
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
58
59
git add .
60
git commit -m "chore: update Java SDK from latest OpenAPI specification" || exit 0
- git push
61
+ git push https://x-access-token:${GITHUB_TOKEN}@github.com/${{ github.repository }}.git HEAD:${{ github.ref }}
0 commit comments