From f2c60f2e163fe40b10087bdae441222e1ff99444 Mon Sep 17 00:00:00 2001 From: Joachim Wiberg Date: Thu, 3 Oct 2024 09:58:30 +0200 Subject: [PATCH] .github: drop sync job in favor of local cronjob [skip ci] Resolves: #572 Signed-off-by: Joachim Wiberg --- .github/workflows/sync-fork.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 .github/workflows/sync-fork.yml diff --git a/.github/workflows/sync-fork.yml b/.github/workflows/sync-fork.yml deleted file mode 100644 index 4b0de1ae..00000000 --- a/.github/workflows/sync-fork.yml +++ /dev/null @@ -1,28 +0,0 @@ -# To enable automatic sync of your Infix fork every day, or on dispatch, -# set the repoistory or organisation variable (not secret): -# -# SYNC_FORK = true -# -# You also need a GH_SYNC_REPO token allowed to update workflows. For -# more information on variables and secrets, see the GitHub docs. -# See https://docs.github.com/en/actions/learn-github-actions/variables -name: Synchronize your fork of Infix with upstream - -on: - schedule: - - cron: 42 2 * * * - workflow_dispatch: - -jobs: - sync_fork: - if: ${{github.repository_owner != 'kernelkit' && vars.SYNC_FORK == 'true' }} - runs-on: ubuntu-latest - steps: - - uses: TobKed/github-forks-sync-action@master - with: - github_token: ${{ secrets.GH_SYNC_REPO }} - upstream_repository: KernelKit/infix - upstream_branch: main - target_branch: main - force: false - tags: true