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 }}