From 333a3c839d00bfbbab5760d4b866e90f2775f891 Mon Sep 17 00:00:00 2001 From: RT15548 <168917470+RT15548@users.noreply.github.com> Date: Tue, 24 Feb 2026 18:05:28 +0800 Subject: [PATCH] Delete .github/workflows/sync-upstream.yml --- .github/workflows/sync-upstream.yml | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .github/workflows/sync-upstream.yml diff --git a/.github/workflows/sync-upstream.yml b/.github/workflows/sync-upstream.yml deleted file mode 100644 index 3f7a721..0000000 --- a/.github/workflows/sync-upstream.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Sync Upstream - -on: - schedule: - - cron: '0 * * * *' # 每小时检查一次 - workflow_dispatch: # 也可以在 GitHub 手动触发 - -jobs: - sync: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - with: - token: ${{ secrets.GITHUB_TOKEN }} - fetch-depth: 0 - - - name: Sync from upstream - uses: aormsby/Fork-Sync-With-Upstream-action@v3.4 - with: - upstream_sync_repo: RT15548/LittleWhiteBox - upstream_sync_branch: main - target_sync_branch: main - target_repo_token: ${{ secrets.GITHUB_TOKEN }} - test_mode: false