Skip to content

Commit 0d7653f

Browse files
committed
fix: avoid function calls in GH action script
1 parent 32dbb21 commit 0d7653f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/automatic-updates.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
branch: update-branch
2929
base: main
3030
commit-message: "feat: Node.js ${{ steps.updt.outputs.result.updatedVersions.join(', ') }}"
31-
title: "feat: Node.js ${{ steps.updt.outputs.result.updatedVersions.join(', ') }}"
31+
title: "feat: Node.js ${{ steps.updt.outputs.result.updatedVersionsString }}"
3232
delete-branch: true
3333
team-reviewers: |
3434
@nodejs/docker

build-automation.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,6 @@ export default async function(github) {
100100
const { stdout } = (await exec(`git diff`));
101101
console.log(stdout);
102102

103-
return { updatedVersions };
103+
return { updatedVersions, updatedVersionsString: updatedVersions.join(', ') };
104104
}
105105
}

0 commit comments

Comments
 (0)