We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3978b22 commit 66edfa2Copy full SHA for 66edfa2
1 file changed
src/services/gitService.ts
@@ -47,7 +47,7 @@ export class GitService {
47
* @returns The name of the created branch or null if no changes were made.
48
*/
49
async createReleaseBranch(version: string): Promise<string | null> {
50
- const branch = `version/v${version}`;
+ const branch = `version-bump/v${version}`;
51
await this._execGitCommand(['checkout', '-b', branch]);
52
const committed = await this.commitChanges(`chore(release): bump version to v${version}`);
53
if (!committed) {
0 commit comments