trustwallet-assets/.github/workflows/periodic-update.yml
Daniel 2794a27cfb
Add command for adding asset template (#17338)
* Add command for adding asset template

* Fix explorer links for terra
2022-01-14 17:02:39 +03: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.17
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