Skip to content

Sync Upstream

Sync Upstream #225

Workflow file for this run

name: Sync Upstream
permissions: write-all # grant write permission
on:
schedule:
- cron: '20 4 * * *' # scheduled for 04:20 daily
workflow_dispatch: # trigger manually
jobs:
sync:
runs-on: ubuntu-latest
steps:
- uses: tgymnich/fork-sync@v1.8
with:
repo: quicktype
owner: quicktype
base: master
head: master
auto_approve: true
token: ${{ secrets.GH_TOKEN }}