Skip to content

Commit 5ed5f9f

Browse files
committed
jobs/seed-github-ci: fix cron() argument type
I thought the int there would automatically get coerced to a string, but that's not the case.
1 parent 14ca6b7 commit 5ed5f9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jobs/seed-github-ci.Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ node { repos.each { repo ->
4545
triggers {
4646
// manually rescan once a day; this is important so that it
4747
// picks up on deleted branches/PRs which can be cleaned up
48-
cron(60 * 24)
48+
cron((60 * 24).toString())
4949
}
5050
// things which don't seem to have a nice DSL :(
5151
configure {

0 commit comments

Comments
 (0)