21 Commits

Author SHA1 Message Date
eacbd5b3c4 and more 2022-09-18 16:34:28 +02:00
5c91fa426c with more roadmap items 2022-09-18 16:34:05 +02:00
e760eb48ff with query results 2022-09-18 16:33:10 +02:00
f081d813a1 with query results 2022-09-18 16:10:49 +02:00
e35672c262 we can now query 2022-09-18 16:09:54 +02:00
cf2418c72b with correct path 2022-09-18 15:49:29 +02:00
7a27e72876 with queryier 2022-09-18 15:48:58 +02:00
56b0ca3f0b Added example 2022-09-18 15:20:15 +02:00
fa8985a0e7 with reordered roadmap 2022-09-18 15:16:35 +02:00
1ff0014ad4 feature/docker-action (#11)
Co-authored-by: kjuulh <contact@kjuulh.io>
Reviewed-on: kjuulh/kraken#11
2022-09-18 11:51:22 +02:00
9696270d22 feature/gitea-integration (#10)
Co-authored-by: kjuulh <contact@kjuulh.io>
Reviewed-on: kjuulh/kraken#10
2022-09-18 00:10:44 +02:00
0cb923a3a5 feature/add-actions (#9)
Co-authored-by: kjuulh <contact@kjuulh.io>
Reviewed-on: kjuulh/kraken#9
2022-09-14 23:40:58 +02:00
ce55f6523c with action creator 2022-09-13 22:54:49 +02:00
564147eb6a with action 2022-09-13 21:56:56 +02:00
fcd369d48f removed replace 2022-09-13 21:55:58 +02:00
c759f8e698 removed unused stuff 2022-09-13 21:55:08 +02:00
fd7b06e840 added example (#7)
Co-authored-by: kjuulh <contact@kjuulh.io>
Reviewed-on: kjuulh/kraken#7
2022-09-13 21:54:05 +02:00
c7e773be93 with public interfaces 2022-09-13 21:15:32 +02:00
559fb41571 refac/process_command (#6)
Co-authored-by: kjuulh <contact@kjuulh.io>
Reviewed-on: kjuulh/kraken#6
2022-09-13 20:55:41 +02:00
1b14d33a53 another roadmap item (#5)
Co-authored-by: kjuulh <contact@kjuulh.io>
Reviewed-on: kjuulh/kraken#5
2022-09-13 20:54:59 +02:00
d9404525f5 add roadmpa item 2022-09-13 20:23:24 +02:00
2 changed files with 1 additions and 12 deletions

View File

@@ -1,11 +0,0 @@
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: false,
SingleBranch: true,
Depth: 1,
Auth: auth,
RecurseSubmodules: 1,