feat(sync): add branch & tag listing support and improve sync mirroring and sync log routing

This commit is contained in:
2026-03-02 10:37:07 +00:00
parent 75d35405dc
commit 56403224c0
16 changed files with 411 additions and 57 deletions

View File

@@ -0,0 +1,9 @@
export interface IBranch {
name: string;
commitSha: string;
}
export interface ITag {
name: string;
commitSha: string;
}

View File

@@ -2,6 +2,7 @@ export * from './identity.ts';
export * from './connection.ts';
export * from './project.ts';
export * from './group.ts';
export * from './branch.ts';
export * from './secret.ts';
export * from './pipeline.ts';
export * from './actionlog.ts';