fix: avoid function calls in GH action script
This commit is contained in:
parent
32dbb21418
commit
0d7653f3b7
|
@ -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
|
||||
|
|
|
@ -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(', ') };
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue