From 734db025d61af260a9fc63ee5fb1582a1ebf1c82 Mon Sep 17 00:00:00 2001 From: YuitoAkatsuki Date: Thu, 11 Apr 2024 13:57:38 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=E3=82=B3=E3=83=9F=E3=83=83=E3=83=88?= =?UTF-8?q?=E5=85=88=E3=83=9F=E3=82=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/rebaseTemplate.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rebaseTemplate.yml b/.github/workflows/rebaseTemplate.yml index 40fc125..6006022 100644 --- a/.github/workflows/rebaseTemplate.yml +++ b/.github/workflows/rebaseTemplate.yml @@ -31,6 +31,11 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | git fetch template master:template/master + - name: Checkout doc + uses: actions/checkout@v4 + with: + ref: template/master + path: template/master - name: Delete workflow run: | rm -r ./.github @@ -38,8 +43,7 @@ jobs: run: | git config --global user.email "workflow@github.com" git config --global user.name "Workflow" - git add * - git commit * -m "Del workflow" + git commit -a -m "Del workflow" - name: Push env: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}