We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e36c65b commit 2b7f1abCopy full SHA for 2b7f1ab
src/main/kotlin/net/leanix/githubagent/shared/Constants.kt
@@ -5,13 +5,15 @@ const val APP_NAME_TOPIC = "appName"
5
const val LOGS_TOPIC = "logs"
6
const val MANIFEST_FILE_NAME = "leanix.yaml"
7
const val WORKFLOW_RUN_EVENT = "WORKFLOW_RUN"
8
+const val INSTALLATION_REPOSITORIES = "INSTALLATION_REPOSITORIES"
9
10
val SUPPORTED_EVENT_TYPES = listOf(
11
"REPOSITORY",
12
"PUSH",
13
"ORGANIZATION",
14
"INSTALLATION",
- WORKFLOW_RUN_EVENT
15
+ WORKFLOW_RUN_EVENT,
16
+ INSTALLATION_REPOSITORIES
17
)
18
19
val fileNameMatchRegex = Regex("/?$MANIFEST_FILE_NAME\$", RegexOption.IGNORE_CASE)
0 commit comments