feat(gitlab): add repository branches and tags endpoints and corresponding types
This commit is contained in:
@@ -70,6 +70,20 @@ export interface IGitLabJob {
|
||||
duration: number;
|
||||
}
|
||||
|
||||
export interface IGitLabBranch {
|
||||
name: string;
|
||||
commit: {
|
||||
id: string;
|
||||
};
|
||||
}
|
||||
|
||||
export interface IGitLabTag {
|
||||
name: string;
|
||||
commit: {
|
||||
id: string;
|
||||
};
|
||||
}
|
||||
|
||||
export interface ITestConnectionResult {
|
||||
ok: boolean;
|
||||
error?: string;
|
||||
|
||||
Reference in New Issue
Block a user