mirror of
https://github.com/Instadapp/trustwallet-assets.git
synced 2024-07-29 22:37:31 +00:00
43 lines
1.1 KiB
YAML
43 lines
1.1 KiB
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 1.17
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.17
|
|
id: go
|
|
|
|
- name: Check out code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Run update auto
|
|
run: go run ./cmd/main.go --config=./.github/assets.config.yaml --script=updater-auto
|
|
|
|
- name: Show update result (diff)
|
|
if: success()
|
|
run: |
|
|
git status
|
|
git diff
|
|
|
|
- name: Run check
|
|
run: go run ./cmd/main.go --config=./.github/assets.config.yaml --script=checker
|
|
|
|
- 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 |