From 7c8a0b887319e90c0f462d2d821c4395275f54ca Mon Sep 17 00:00:00 2001 From: Jonathan Desrosiers <359867+desrosj@users.noreply.github.com> Date: Sat, 31 Jan 2026 18:32:30 +0100 Subject: [PATCH] Remove the default branch migration workflow. Since the branch has migrated, this is no longer necessary. --- .github/workflows/default-branch-migration.yml | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 .github/workflows/default-branch-migration.yml diff --git a/.github/workflows/default-branch-migration.yml b/.github/workflows/default-branch-migration.yml deleted file mode 100644 index 63e636c..0000000 --- a/.github/workflows/default-branch-migration.yml +++ /dev/null @@ -1,17 +0,0 @@ -name: Default Branch Migration -on: [push] -jobs: - migrate_branch: - name: Migrate Branch - runs-on: ubuntu-latest - steps: - - name: Migrate - uses: liyanchang/default-branch-migration@v1.0.1 - with: - # GitHub will fill in this template with the correct token - # You don't need to edit this line - github_token: ${{ secrets.GITHUB_TOKEN }} - # TODO: Change this to the default branch you want to migrate away from - previous_default: master - # TODO: Change this to the default branch you want to migrate away to - new_default: trunk