From 12a85111b1b13e4094f333d6ef28204bef1d8892 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: Fri, 22 Sep 2023 00:16:49 +0900 Subject: [PATCH] feat: optimize actions --- .github/workflows/sync_dev.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/sync_dev.yml b/.github/workflows/sync_dev.yml index acc17e5..669bc1e 100644 --- a/.github/workflows/sync_dev.yml +++ b/.github/workflows/sync_dev.yml @@ -17,8 +17,5 @@ jobs: ref: main - name: Create Pull Request - uses: peter-evans/create-pull-request@v5 - with: - delete-branch: false - base: dev - title: "chore(sync): merge dev into main" + run: | + gh pr create --title "chore(sync): merge dev into main" --body "Merge dev to main" --base main --head dev