feat: add new branch trigger in GitHub

This commit is contained in:
Ali BARIN
2022-04-20 21:56:01 +02:00
committed by Ömer Faruk Aydın
parent 6bee6bafa8
commit 3551d12e7d
7 changed files with 124 additions and 15 deletions

View File

@@ -0,0 +1,10 @@
import { IJSONObject } from '@automatisch/types';
import ListRepos from './data/list-repos';
export default class Data {
listRepos: ListRepos;
constructor(connectionData: IJSONObject) {
this.listRepos = new ListRepos(connectionData);
}
}