From 1ff85aae430cef067db7e2a9933942fa158a4c25 Mon Sep 17 00:00:00 2001 From: antstalepresh Date: Fri, 6 Nov 2020 00:15:31 +1000 Subject: [PATCH] cosmos sdk master sync on interval --- .github/workflows/repo-sync.yml | 19 +++++++++++++++++++ 1 file changed, 19 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 0000000000..8e9cbed5e4 --- /dev/null +++ b/.github/workflows/repo-sync.yml @@ -0,0 +1,19 @@ +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/cosmos/cosmos-sdk" + source_branch: "master" + destination_branch: "master" + github_token: ${{ secrets.PAT }} \ No newline at end of file