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:
Georgios Andrianakis
2020-01-24 16:59:41 +02:00
parent e771425955
commit 9b0edce9e2

View File

@@ -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"