From f8284958c4723b9bfb4c26d7d1c86b73c7db1e6c Mon Sep 17 00:00:00 2001 From: Yuta Matsumura Date: Sun, 23 Jul 2023 14:12:50 +0900 Subject: [PATCH] update github-pull-request-creation.yml --- .github/workflows/github-pull-request-creation.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/github-pull-request-creation.yml b/.github/workflows/github-pull-request-creation.yml index 6c5ced8..aec6f00 100644 --- a/.github/workflows/github-pull-request-creation.yml +++ b/.github/workflows/github-pull-request-creation.yml @@ -33,10 +33,11 @@ jobs: - name: Create a pull request id: pr run: | - echo "url=$(gh pr create \ + url=$(gh pr create \ --base main \ --head $BRANCH \ - --title '$TITLE' \ - --body '')" >> $GITHUB_OUTPUT + --title "$TITLE" \ + --body "") + echo "url=$url" >> $GITHUB_OUTPUT env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}