We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05fe722 commit e0b45cdCopy full SHA for e0b45cd
1 file changed
settings.gradle.kts
@@ -9,9 +9,13 @@ configure<com.mooltiverse.oss.nyx.gradle.NyxExtension> {
9
preset.set("extended")
10
11
services {
12
- github {
13
- options.put("REPOSITORY_OWNER", "fabb")
14
- options.put("REPOSITORY_NAME", "WigAI")
+ register("github") {
+ type.set("GITHUB")
+ options.set(mapOf(
15
+ "AUTHENTICATION_TOKEN" to "{{#environmentVariable}}GH_TOKEN{{/environmentVariable}}",
16
+ "REPOSITORY_OWNER" to "fabb",
17
+ "REPOSITORY_NAME" to "WigAI",
18
+ ))
19
}
20
21
0 commit comments