feat(gitea): add repository branches and tags support: new IGiteaBranch/IGiteaTag interfaces and getRepoBranches/getRepoTags client methods
This commit is contained in:
@@ -58,6 +58,21 @@ export interface IGiteaActionRunJob {
|
||||
run_duration: number;
|
||||
}
|
||||
|
||||
export interface IGiteaBranch {
|
||||
name: string;
|
||||
commit: {
|
||||
id: string;
|
||||
};
|
||||
}
|
||||
|
||||
export interface IGiteaTag {
|
||||
name: string;
|
||||
id: string;
|
||||
commit: {
|
||||
sha: string;
|
||||
};
|
||||
}
|
||||
|
||||
export interface ITestConnectionResult {
|
||||
ok: boolean;
|
||||
error?: string;
|
||||
|
||||
Reference in New Issue
Block a user