Skip to content

Commit 5759917

Browse files
authored
Fix the release workflow references to scripts (#4034)
2 parents d121c4f + 95741bd commit 5759917

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/merge-back.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ jobs:
3131
with:
3232
github-token: ${{ secrets.BOT_GITHUB_TOKEN }}
3333
script: |
34-
const script = require('./.github/scripts/merge-back.js');
34+
const script = require('./.github/scripts/merge-back.cjs');
3535
await script({ core, github, context });

.github/workflows/release-branch.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,5 +103,5 @@ jobs:
103103
with:
104104
github-token: ${{ secrets.BOT_GITHUB_TOKEN }}
105105
script: |
106-
const script = require('./.github/scripts/create-release-branch.js');
106+
const script = require('./.github/scripts/create-release-branch.cjs');
107107
await script({ core, github, context });

0 commit comments

Comments
 (0)