diff --git a/.github/workflows/automatic-updates.yml b/.github/workflows/automatic-updates.yml index f5e69ce2..c787dbdc 100644 --- a/.github/workflows/automatic-updates.yml +++ b/.github/workflows/automatic-updates.yml @@ -28,7 +28,7 @@ jobs: branch: update-branch base: main commit-message: "feat: Node.js ${{ steps.updt.outputs.result.updatedVersions.join(', ') }}" - title: "feat: Node.js ${{ steps.updt.outputs.result.updatedVersions.join(', ') }}" + title: "feat: Node.js ${{ steps.updt.outputs.result.updatedVersionsString }}" delete-branch: true team-reviewers: | @nodejs/docker diff --git a/build-automation.mjs b/build-automation.mjs index 0fc3ea56..3a8c538b 100644 --- a/build-automation.mjs +++ b/build-automation.mjs @@ -100,6 +100,6 @@ export default async function(github) { const { stdout } = (await exec(`git diff`)); console.log(stdout); - return { updatedVersions }; + return { updatedVersions, updatedVersionsString: updatedVersions.join(', ') }; } }