From 83557f35cb6ae479b99e29907448558910cbe95c Mon Sep 17 00:00:00 2001 From: Cooper Ransom Date: Sun, 31 Mar 2024 12:05:14 -0400 Subject: [PATCH] Remove sync file --- .github/workflows/sync.yml | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 .github/workflows/sync.yml diff --git a/.github/workflows/sync.yml b/.github/workflows/sync.yml deleted file mode 100644 index a051bf19..00000000 --- a/.github/workflows/sync.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Sync fork - -permissions: - contents: write - -on: - schedule: - - cron: "0 0 * * *" - workflow_dispatch: - -jobs: - sync: - name: Sync fork - runs-on: ubuntu-latest - if: ${{ github.event.repository.fork }} - - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Sync fork - run: gh repo sync ${{ github.repository }} - env: - GH_TOKEN: ${{ github.token }} - - - uses: gautamkrishnar/keepalive-workflow@v1