From 7faae972947cbbd391a5f980abd31c1170e219b5 Mon Sep 17 00:00:00 2001 From: cameronvoell Date: Fri, 13 Sep 2024 16:47:01 -0700 Subject: [PATCH] rm sync beta gh action --- .github/workflows/syncBeta.yml | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 .github/workflows/syncBeta.yml diff --git a/.github/workflows/syncBeta.yml b/.github/workflows/syncBeta.yml deleted file mode 100644 index d4dabf8a5..000000000 --- a/.github/workflows/syncBeta.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: Auto PR Creation -on: - schedule: - - cron: '5 9 * * 5' # Runs at 1:05 AM PT(-8) every Monday (time in UTC) - workflow_dispatch: - -jobs: - create-pr: - runs-on: ubuntu-latest - steps: - - name: Checkout Repository - uses: actions/checkout@v2 - - name: Create Pull Request - uses: repo-sync/pull-request@v2 - with: - source_branch: "main" - destination_branch: "beta" - pr_title: "`main` => `beta`" - github_token: ${{ secrets.GITHUB_TOKEN }}