Skip to content

Commit

Permalink
Merge pull request #1 from lurk-lab/ci-basic
Browse files Browse the repository at this point in the history
ci: set up 15-min sync from upstream
  • Loading branch information
huitseeker authored Jun 4, 2024
2 parents b69b0f0 + d8066b7 commit f54b0e7
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/repo-sync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
on:
schedule:
- cron: "*/15 * * * *"
workflow_dispatch:

jobs:
repo-sync:
name: Sync changes from upstream SP1
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: repo-sync
uses: repo-sync/github-sync@v2
with:
source_repo: "https://github.com/Plonky3/Plonky3.git"
source_branch: "main"
destination_branch: "main"
github_token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit f54b0e7

Please sign in to comment.