feat: add new commit trigger in GitHub

This commit is contained in:
Ali BARIN
2022-04-24 01:23:59 +02:00
parent 2e2d371875
commit e651fd141b
32 changed files with 439 additions and 98 deletions

View File

@@ -85,6 +85,7 @@ export interface IFieldDropdown {
clickToCopy: boolean;
name: string;
variables: boolean;
dependsOn: string[];
source: {
type: string;
name: string;
@@ -108,6 +109,7 @@ export interface IFieldText {
clickToCopy: boolean;
name: string;
variables: boolean;
dependsOn: string[];
}
type IField = IFieldDropdown | IFieldText;