mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
19 lines
493 B
YAML
19 lines
493 B
YAML
name: Sync Example Repositories
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
workflow_dispatch:
|
|
jobs:
|
|
sync:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Repository
|
|
uses: actions/checkout@v2
|
|
- name: Run GitHub File Sync
|
|
# Can update to v1 when https://github.com/BetaHuhn/repo-file-sync-action/issues/168 is resolved
|
|
uses: BetaHuhn/repo-file-sync-action@v1.16.5
|
|
with:
|
|
GH_PAT: ${{ secrets.SYNC_EXAMPLE_PAT }}
|
|
SKIP_PR: true
|