We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 105b9e1 commit 75a93c7Copy full SHA for 75a93c7
1 file changed
.github/workflows/update_bundle.yml
@@ -23,11 +23,8 @@ jobs:
23
python build_bundle_url.py
24
25
- name: Commit and push changes
26
- env:
27
- GITHUB_TOKEN: ${{ secrets.PUSH_TOKEN }}
28
- run: |
29
- git config --local user.email "action@github.com"
30
- git config --local user.name "GitHub Action"
31
- git add bundle.json
32
- git commit -m "Update bundle.json [skip ci]"
33
- git push
+ uses: ad-m/github-push-action@master
+ with:
+ github_token: ${{ secrets.GITHUB_TOKEN }}
+ branch: main
+ commit_message: "update bundle.json [skip ci]"
0 commit comments