From 7d92e03ea7ca0af2725526b9db4f8b21ff1a45a1 Mon Sep 17 00:00:00 2001 From: Luca Bilke Date: Tue, 22 Oct 2024 14:38:16 +0200 Subject: [PATCH] remove broken pull-upstream pipeline --- .forgejo/workflows/pull-upstream.yaml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 .forgejo/workflows/pull-upstream.yaml diff --git a/.forgejo/workflows/pull-upstream.yaml b/.forgejo/workflows/pull-upstream.yaml deleted file mode 100644 index 28e3338f064..00000000000 --- a/.forgejo/workflows/pull-upstream.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json -name: Pull upstream commits - -on: - schedule: - - cron: "0 0 * * *" - -jobs: - sync_upstream: - runs-on: ubuntu-latest - steps: - - name: Checkout target repo - uses: https://code.forgejo.org/actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 - - - name: Pull upstream repo - uses: https://github.com/aormsby/Fork-Sync-With-Upstream-action@1090e365224fc834e7e1de521c417ded2d6fcb53 # v3.4.1 - with: - target_sync_branch: master - target_repo_token: ${{ secrets.GITHUB_TOKEN }} - upstream_sync_branch: master - upstream_sync_repo: void-linux/void-packages - upstream_repo_access_token: ${{ secrets.API_TOKEN_GITHUB }} - - - name: Print status - run: echo ${{ steps.sync.outputs.has_new_commits }}