From d193dd2627b88309eca3cec4973ba5bea2906740 Mon Sep 17 00:00:00 2001 From: Lorna Jane Mitchell Date: Thu, 19 Sep 2024 16:10:09 +0100 Subject: [PATCH] chore: Remove the sync job, we don't use it any more (#2591) --- .github/workflows/sync.yml | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 .github/workflows/sync.yml diff --git a/.github/workflows/sync.yml b/.github/workflows/sync.yml deleted file mode 100644 index 98e42d33..00000000 --- a/.github/workflows/sync.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: Sync Files -on: - push: - branches: - - main - workflow_dispatch: -jobs: - sync: - runs-on: ubuntu-latest - steps: - - name: Checkout Repository - uses: actions/checkout@v3 - - name: Run GitHub File Sync - uses: Redocly/repo-file-sync-action@main - with: - GH_PAT: ${{ secrets.GH_PAT }} - COMMIT_PREFIX: 'sync:' - SKIP_PR: true