Skip to content

Commit 8e3057a

Browse files
authored
Merge branch 'main' into jwt
2 parents 13a5e05 + d005847 commit 8e3057a

File tree

7 files changed

+1206
-1179
lines changed

7 files changed

+1206
-1179
lines changed

pkg/pb/source_metadatapb/source_metadata.pb.go

Lines changed: 516 additions & 506 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/pb/source_metadatapb/source_metadata.pb.validate.go

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/pb/sourcespb/sources.pb.go

Lines changed: 682 additions & 671 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/pb/sourcespb/sources.pb.validate.go

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/sources/git/git.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -602,11 +602,11 @@ func CloneRepoUsingUnauthenticated(ctx context.Context, url, clonePath string, a
602602
// CloneRepoUsingSSH clones a repo using SSH.
603603
func CloneRepoUsingSSH(ctx context.Context, gitURL string, args ...string) (string, *git.Repository, error) {
604604
if isCodeCommitURL(gitURL) {
605-
return CloneRepo(ctx, nil, gitURL, "", false, args...)
605+
return CloneRepo(ctx, nil, gitURL, "", true, args...)
606606
}
607607

608608
userInfo := url.User("git")
609-
return CloneRepo(ctx, userInfo, gitURL, "", false, args...)
609+
return CloneRepo(ctx, userInfo, gitURL, "", true, args...)
610610
}
611611

612612
var codeCommitRE = regexp.MustCompile(`ssh://git-codecommit\.[\w-]+\.amazonaws\.com`)

proto/source_metadata.proto

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ message Confluence {
6666
string location = 7;
6767
string file = 8;
6868
string user = 9;
69+
string comment_id = 10;
6970
}
7071

7172
message Docker {

proto/sources.proto

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,7 @@ message Confluence {
153153
repeated string ignore_spaces = 8;
154154
bool include_attachments = 9;
155155
bool skip_history = 10;
156+
bool include_comments = 11;
156157
}
157158

158159
message Docker {

0 commit comments

Comments
 (0)