From 349df7b4cedf1a6208236824796ef7f840e5c8bf Mon Sep 17 00:00:00 2001 From: Skillz4Killz <23035000+Skillz4Killz@users.noreply.github.com> Date: Tue, 28 Feb 2023 16:52:39 -0600 Subject: [PATCH] Create sync_repos.yml --- .github/workflows/sync_repos.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/sync_repos.yml diff --git a/.github/workflows/sync_repos.yml b/.github/workflows/sync_repos.yml new file mode 100644 index 000000000..60860953b --- /dev/null +++ b/.github/workflows/sync_repos.yml @@ -0,0 +1,24 @@ +name: Sync Repos + +on: + push: + branches: + - main + paths: + - "website/**" + # - "template/**" + +jobs: + sync: + runs-on: ubuntu-latest + steps: + - name: Checkout Repository + uses: actions/checkout@master + - name: Run GitHub File Sync + uses: BetaHuhn/repo-file-sync-action@v1 + with: + GH_PAT: ${{ secrets.REPO_SYNC }} + GIT_EMAIL: to@itoh.at + GIT_USERNAME: itohatweb + SKIP_PR: true + COMMIT_EACH_FILE: false