diff --git a/.github/workflows/sync-to-production.yaml b/.github/workflows/sync-to-production.yaml deleted file mode 100644 index 03acb19..0000000 --- a/.github/workflows/sync-to-production.yaml +++ /dev/null @@ -1,33 +0,0 @@ -name: Sync main to sandbox-production - -on: - push: - branches: - - main - -permissions: - contents: write - pull-requests: write - -jobs: - sync: - runs-on: ubuntu-latest - - steps: - - name: Checkout code - uses: actions/checkout@v4 - with: - fetch-depth: 0 # Fetch all history so we can force push - - - name: Set up Git - run: | - git config --global user.name 'github-actions[bot]' - git config --global user.email 'github-actions[bot]@livekit.io' - - - name: Sync to sandbox-production - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: | - git checkout sandbox-production || git checkout -b sandbox-production - git merge --strategy-option theirs main - git push origin sandbox-production diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml deleted file mode 100644 index addd0c8..0000000 --- a/.github/workflows/test.yaml +++ /dev/null @@ -1,32 +0,0 @@ -name: Test -on: - push: - branches: [ main ] - pull_request: - -permissions: - contents: read - -jobs: - test: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: pnpm/action-setup@v4 - - name: Use Node.js 20 - uses: actions/setup-node@v4 - with: - node-version: 20 - cache: 'pnpm' - - - name: Install dependencies - run: pnpm install - - - name: ESLint - run: pnpm lint - - - name: Prettier - run: pnpm format:check - - - name: Run Tests - run: pnpm test \ No newline at end of file