From 97c198547999ed7b06e8803c5652496051fba0ca 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: Wed, 20 Sep 2023 20:30:20 +0900 Subject: [PATCH] fix: workflow --- .github/workflows/pull.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pull.yml b/.github/workflows/pull.yml index db856371..befb665d 100644 --- a/.github/workflows/pull.yml +++ b/.github/workflows/pull.yml @@ -15,7 +15,10 @@ jobs: # Runs a single command using the runners shell - name: Get PR commit message id: pr - run: echo "message=$(git log --format=%B -n 1)" > $GITHUB_OUTPUT + run: | + commitmessage=$(git log --format=%B -n 1) + echo "message=$commitmessage" > $GITHUB_OUTPUT + echo "set message=$commitmessage" # Runs a set of commands using the runners shell - name: Close PR if commit message is "Update main.go"