Skip to content

Commit c5017b6

Browse files
committed
chore: try fix release actiong
1 parent d07d72f commit c5017b6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
npm run changelog
4848
4949
git add --all .
50-
git commit -m "chore(release): ${{ steps.get_version.outputs.version }} 🎉" -m "Build ran for ${GITHUB_SHA}"
50+
git commit -m "chore(release): ${{ steps.get_version.outputs.version }} 🎉"
5151
git push -u origin "chore/release/${{ steps.get_version.outputs.version }}"
5252
5353
- name: Create Pull Request

scripts/actions/create-pr.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const pullRequest = await octokit.pulls.create({
3737
owner: OWNER,
3838
repo: REPOSITORY,
3939
maintainer_can_modify: true,
40-
title: `chore(Release): ${packageJson.version} 🎉`,
40+
title: `chore(release): ${packageJson.version} 🎉`,
4141
body: pullRequestBody.join('\n'),
4242
});
4343

0 commit comments

Comments
 (0)