Skip to content
This repository has been archived by the owner on Feb 22, 2024. It is now read-only.

Commit

Permalink
Merge pull request #3 from huitseeker/CI-sync
Browse files Browse the repository at this point in the history
ci: Job to auto-sync upstream changes
  • Loading branch information
huitseeker authored Jun 8, 2023
2 parents 7e3fc6a + caa60ff commit 2f22a96
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 pasta_curves
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false
- name: repo-sync
uses: repo-sync/github-sync@v2
with:
source_repo: "https://github.com/zcash/pasta_curves.git"
source_branch: "main"
destination_branch: "main"
github_token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 2f22a96

Please sign in to comment.