Skip to content

fetch

fetch #1200

Workflow file for this run

name: fetch
on:
schedule:
- cron: "0 8 * * *"
workflow_dispatch:
jobs:
fetch:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: fetch new data
run: |
yarn
yarn fetch
- name: commit new data
run: |
git config --global user.name 'NativeScript-Bot'
git config --global user.email '[email protected]'
git commit -am "chore(fetch): $(date)"
git push