feat: add new repository trigger in GitHub
This commit is contained in:

committed by
Ömer Faruk Aydın

parent
4f7bef83ea
commit
96ede071cf
10
packages/backend/src/apps/github/triggers.ts
Normal file
10
packages/backend/src/apps/github/triggers.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
import { IJSONObject } from '@automatisch/types';
|
||||
import NewRepository from './triggers/new-repository';
|
||||
|
||||
export default class Triggers {
|
||||
newRepository: NewRepository;
|
||||
|
||||
constructor(connectionData: IJSONObject, parameters: IJSONObject) {
|
||||
this.newRepository = new NewRepository(connectionData);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user