2 Commits

Author SHA1 Message Date
octopush
bb70cc53f4 some-commit 2022-09-21 21:50:15 +02:00
1f46f6ac8d v0.1 (#8)
Co-authored-by: kjuulh <contact@kjuulh.io>
Reviewed-on: https://git.front.kjuulh.io/kjuulh/kraken/pulls/8
2022-09-18 16:49:34 +02:00
2 changed files with 12 additions and 1 deletions

11
.releaserc.yml Normal file
View File

@@ -0,0 +1,11 @@
branches:
- "main"
- "v0.x"
plugins:
- "@semantic-release/commit-analyzer"
- "@semantic-release/release-notes-generator"
- "@semantic-release/changelog"
- "@semantic-release/git"

View File

@@ -242,7 +242,7 @@ func (g *Git) CreateBranch(ctx context.Context, gitRepo *GitRepo) error {
err = worktree.PullContext(ctx, &git.PullOptions{
RemoteName: "origin",
ReferenceName: "refs/heads/main",
SingleBranch: true,
SingleBranch: false,
Depth: 1,
Auth: auth,
RecurseSubmodules: 1,