Skip to content

Repo Sync

Repo Sync #3491

Workflow file for this run

name: Repo Sync
on:
schedule:
- cron: '*/5 * * * *'
workflow_dispatch:
jobs:
repo-sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
- name: repo-sync
uses: repo-sync/github-sync@v2
with:
source_repo: 'https://${{secrets.PAT}}@github.com/vu3th/vue-dapp-starter.git'
source_branch: 'main'
destination_branch: 'main'
github_token: ${{ secrets.PAT }}