Skip to content

Commit 66edfa2

Browse files
committed
chore(release): rename release branch prefix
- Changed branch prefix from `version/` to `version-bump/` - Updated commit message accordingly
1 parent 3978b22 commit 66edfa2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/services/gitService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export class GitService {
4747
* @returns The name of the created branch or null if no changes were made.
4848
*/
4949
async createReleaseBranch(version: string): Promise<string | null> {
50-
const branch = `version/v${version}`;
50+
const branch = `version-bump/v${version}`;
5151
await this._execGitCommand(['checkout', '-b', branch]);
5252
const committed = await this.commitChanges(`chore(release): bump version to v${version}`);
5353
if (!committed) {

0 commit comments

Comments
 (0)