Skip to content

sync-fork

sync-fork #326

Workflow file for this run

name: sync-fork
on:
schedule:
- cron: '0 */12 * * *'
workflow_dispatch:
jobs:
sync:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- run: gh repo sync $REPOSITORY -b sync --force
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPOSITORY: ${{ github.repository }}