trustwallet-assets/.github/workflows/periodic-update.yml
Ivan 7d0393bc21
Fix update-auto command & run it (#20634)
* Fix update-auto command & run it

* Upgrade go

* Fix log URI

* Add binance chain name mapping

* Update the dependency
2022-05-26 16:55:41 +02:00

40 lines
971 B
YAML

name: Periodic External Update
on:
schedule:
# Run twice per day (at 1:00UTC/6pmPST, 13:00UTC/6amPST)
- cron: '0 1,13 * * *'
workflow_dispatch:
jobs:
periodic-auto-update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
token: ${{ secrets.COMMIT_TOKEN }}
ref: ${{ github.head_ref }}
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18
id: go
- name: Run update auto
run: make update-auto
- name: Show update result (diff)
if: success()
run: |
git status
git diff
- name: Run check
run: make check
- name: Commit changes
if: success()
uses: stefanzweifel/git-auto-commit-action@v4.1.2
with:
commit_user_name: trust-wallet-merge-bot
commit_user_email: mergebot@trustwallet.com
commit_message: External Updates