Skip to content

Sync fork

Sync fork #736

Workflow file for this run

name: "Sync fork"
on:
schedule:
- cron: '0 13,16 * * 1-5'
jobs:
sync:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- run: gh repo sync $REPOSITORY -b master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPOSITORY: ${{ github.repository }}
BRANCH_NAME: ${{ github.ref_name }}