From 9d22203870387b93c2270f238400367fb62e97d4 Mon Sep 17 00:00:00 2001 From: Lucky3028 Date: Wed, 4 Sep 2024 01:06:48 +0900 Subject: [PATCH] =?UTF-8?q?ci:=20=E3=83=95=E3=82=A9=E3=83=BC=E3=82=AF?= =?UTF-8?q?=E3=81=97=E3=81=9F=E3=83=AA=E3=83=9D=E3=82=B8=E3=83=88=E3=83=AA?= =?UTF-8?q?=E3=81=8B=E3=82=89=E3=81=AEPR=E3=81=AE=E3=81=A8=E3=81=8D?= =?UTF-8?q?=E3=81=ABCI=E3=81=8C=E9=80=94=E4=B8=AD=E3=81=A7=E5=A4=B1?= =?UTF-8?q?=E6=95=97=E3=81=99=E3=82=8B=E3=81=AE=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/create_1_18_release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/create_1_18_release.yml b/.github/workflows/create_1_18_release.yml index 5d248ad3da..6ebd00ceba 100644 --- a/.github/workflows/create_1_18_release.yml +++ b/.github/workflows/create_1_18_release.yml @@ -88,6 +88,8 @@ jobs: - name: Create and push a tag id: tag-name + # GiganticMinecraftにあるSeichiAssistリポジトリのブランチからのPRのみ実行 + if: ${{ github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name }} run: | TAG_NAME=pr-${{ github.event.pull_request.number }}-${{ github.event.pull_request.head.sha }} git tag $TAG_NAME @@ -96,6 +98,8 @@ jobs: - name: Create release uses: softprops/action-gh-release@v1 + # GiganticMinecraftにあるSeichiAssistリポジトリのブランチからのPRのみ実行 + if: ${{ github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: