Ah, I figured it out. Orchid 0.13.0 updated the gr...
# strikt
c
Ah, I figured it out. Orchid 0.13.0 updated the gradle plugin to include
githubToken
directly as a Gradle property. Replacing these lines https://github.com/robfletcher/strikt/blob/master/site/build.gradle.kts#L69-L73 with the following should do the trick
Copy code
githubToken = if (project.hasProperty("github_token")) project.property("github_token") else System.getenv("GITHUB_TOKEN")