trustwallet-assets/.github/workflows/periodic-update.yml

40 lines
971 B
YAML
Raw Normal View History

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:
2020-11-01 06:01:39 +00:00
token: ${{ secrets.COMMIT_TOKEN }}
ref: ${{ github.head_ref }}
2021-12-09 18:55:31 +00:00
- name: Set up Go
2021-12-09 18:55:31 +00:00
uses: actions/setup-go@v2
with:
go-version: 1.18
2021-12-09 18:55:31 +00:00
id: go
- name: Run update auto
run: make update-auto
2021-12-09 18:55:31 +00:00
- name: Show update result (diff)
if: success()
run: |
git status
git diff
2021-12-09 18:55:31 +00:00
- name: Run check
run: make check
2021-12-09 18:55:31 +00:00
- 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
2021-12-09 18:55:31 +00:00
commit_message: External Updates