From 522d101c0bf6bed9fcc7322a6256c19c081309c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BA=90=E6=96=87=E9=9B=A8?= <41315874+fumiama@users.noreply.github.com> Date: Mon, 1 Jul 2024 17:52:19 +0900 Subject: [PATCH] chore(workflow): remove sync_dev --- .github/workflows/sync_dev.yml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .github/workflows/sync_dev.yml diff --git a/.github/workflows/sync_dev.yml b/.github/workflows/sync_dev.yml deleted file mode 100644 index 4696511..0000000 --- a/.github/workflows/sync_dev.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Merge dev into main - -on: - workflow_dispatch: - -jobs: - sync_dev: - runs-on: ubuntu-latest - - permissions: - contents: write - pull-requests: write - - steps: - - uses: actions/checkout@v3 - with: - ref: main - - - name: Create Pull Request - run: | - gh pr create --title "chore(sync): merge dev into main" --body "Merge dev to main" --base main --head dev - env: - GH_TOKEN: ${{ github.token }}