diff --git a/.github/workflows/auto-merge-sweep.yml b/.github/workflows/auto-merge-sweep.yml deleted file mode 100644 index a9923bf..0000000 --- a/.github/workflows/auto-merge-sweep.yml +++ /dev/null @@ -1,56 +0,0 @@ -# FORWARDING SHIM — the sweep lives in bitbaum/fleet now (moved 2026-08-28). -# -# Sixteen repos call this file as a reusable workflow. This shim keeps every -# one of them working unchanged while they migrate to -# uses: bitbaum/fleet/.github/workflows/auto-merge-sweep.yml@main -# at their leisure. NO LOGIC LIVES HERE — logic in a shim is drift, which is -# the disease this whole arrangement exists to cure. - -name: Auto-merge sweep (moved to bitbaum/fleet) - -on: - workflow_call: - inputs: - base_branch: - type: string - default: main - ci_workflow: - type: string - default: ci.yml - rearm_workflows: - type: string - default: '' - deploy_workflow: - type: string - default: '' - max_run_attempts: - type: string - default: '3' - ref: - description: > - Pin the sweep version. Historic callers pass tags/shas of - bitbaum/dotfiles; the default 'master' (dotfiles' branch) is mapped - to fleet's 'main' below. A pinned sha of dotfiles will NOT resolve - in fleet — repin against bitbaum/fleet when migrating. - type: string - default: master - -permissions: - contents: write - pull-requests: write - actions: write - checks: read - statuses: read - -jobs: - forward: - uses: bitbaum/fleet/.github/workflows/auto-merge-sweep.yml@main - with: - base_branch: ${{ inputs.base_branch }} - ci_workflow: ${{ inputs.ci_workflow }} - rearm_workflows: ${{ inputs.rearm_workflows }} - deploy_workflow: ${{ inputs.deploy_workflow }} - max_run_attempts: ${{ inputs.max_run_attempts }} - ref: ${{ inputs.ref == 'master' && 'main' || inputs.ref }} - secrets: - token: ${{ secrets.token }}