mirror of
https://github.com/jlengrand/quarkus.git
synced 2026-03-10 08:41:22 +00:00
Fix type issue with report script in cron CI job
Fixes the following error seen in CI: [kscript] [ERROR] compilation of '.github/NativeBuildReport.kts' failed .github/NativeBuildReport.kts:30:33: error: type mismatch: inferred type is String but Int was expected val issue = repository.getIssue(issueNumber)
This commit is contained in:
2
.github/NativeBuildReport.kts
vendored
2
.github/NativeBuildReport.kts
vendored
@@ -12,7 +12,7 @@ import java.util.concurrent.TimeUnit
|
||||
|
||||
val token = args[0];
|
||||
val status = args[1];
|
||||
val issueNumber = args[2];
|
||||
val issueNumber = args[2].toInt();
|
||||
|
||||
val REPO = "quarkusio/quarkus"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user