trustwallet-assets/.github/workflows/periodic-update.yml
Adam R b704874d4b
Adjust exxternal update build times. (#6315)
Co-authored-by: Catenocrypt <catenocrypt@users.noreply.github.com>
2021-04-08 14:17:51 +02:00

38 lines
1.0 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 }}
- uses: actions/setup-node@v1
with:
node-version: 12
- name: Install Dependencies
run: npm ci
- name: Run scripts
run: npm run updateAuto
- name: Show update result (diff)
if: success()
run: |
git status
git diff
- name: Run check
run: npm run check
- name: Run test
run: npm t
- 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