From 9e350a2315b25aa2c7fbb52bb489aef4265d3b32 Mon Sep 17 00:00:00 2001 From: sam bacha Date: Fri, 26 Mar 2021 05:00:55 -0700 Subject: [PATCH] ci(workflow): sync upstream --- .github/workflows/repo-sync.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/repo-sync.yml diff --git a/.github/workflows/repo-sync.yml b/.github/workflows/repo-sync.yml new file mode 100644 index 000000000..29d6eb3da --- /dev/null +++ b/.github/workflows/repo-sync.yml @@ -0,0 +1,20 @@ +name: repo-sync +on: + schedule: + - cron: "*/15 * * * *" + workflow_dispatch: + +jobs: + repo-sync: + 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/ethereum/solidity" + source_branch: "develop" + destination_branch: "upstream-sync" + github_token: ${{ secrets.PAT }}