Dependabot seems to require the time field to be quoted. If used like this:
amends "package://pkg.pkl-lang.org/pkl-pantry/com.github.dependabot@1.0.1#/v2/Dependabot.pkl"
updates {
new {
// ...
schedule {
interval = "weekly"
date = "monday"
time = "04:00"
}
}
}
The resulting yml after pkl eval -f yaml depandabot.pkl > dependabot.yml doesn't quote the "time" field and the following error is returned by GH's Dependabot action:
The property '#/updates/1/schedule/time' of type integer did not match the following type: string
Dependabot seems to require the time field to be quoted. If used like this:
The resulting yml after
pkl eval -f yaml depandabot.pkl > dependabot.ymldoesn't quote the "time" field and the following error is returned by GH's Dependabot action: