diff --git a/packages/github-actions/actions/merge-trunk-develop-pr/action.yml b/packages/github-actions/actions/merge-trunk-develop-pr/action.yml index e71b8291..63fea87c 100644 --- a/packages/github-actions/actions/merge-trunk-develop-pr/action.yml +++ b/packages/github-actions/actions/merge-trunk-develop-pr/action.yml @@ -18,12 +18,11 @@ runs: uses: actions/github-script@v6 with: script: | - const title = `${github.event.pull_request.title} - Merge \`trunk\` to \`develop\``; - console.log(title, github.event.pull_request.url); + const title = '${{github.event.pull_request.title}} - Merge `trunk` to `develop`'; const opts = await github.rest.pulls.create( { ...context.repo, base: 'develop', head: 'trunk', title, - body: github.event.pull_request.url, + body: '${{ github.event.pull_request.url }}', } );