File tree Expand file tree Collapse file tree 1 file changed +4
-9
lines changed
Expand file tree Collapse file tree 1 file changed +4
-9
lines changed Original file line number Diff line number Diff line change @@ -44,18 +44,13 @@ jobs:
4444 run : |
4545 cd generator
4646 ./generate-sdk.sh
47-
48- - name : Configure Git
49- if : steps.check_changes.outputs.changed == 'true'
50- run : |
51- git config --global user.email '[email protected] ' 52- git config --global user.name 'GitHub Actions Bot'
53-
47+
5448 - name : Commit and push changes
5549 if : steps.check_changes.outputs.changed == 'true'
5650 env :
57- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
51+ PAT_TOKEN : ${{ secrets.PAT_TOKEN }}
5852 run : |
5953 git add .
6054 git commit -m "chore: update Java SDK from latest OpenAPI specification" || exit 0
61- git push https://x-access-token:${GITHUB_TOKEN}@github.com/${{ github.repository }}.git HEAD:${{ github.ref }}
55+ git push https://x-access-token:${PAT_TOKEN}@github.com/${{ github.repository }}.git HEAD:${{ github.ref }}
56+
You can’t perform that action at this time.
0 commit comments