Nikita Boldasov

Results 47 comments of Nikita Boldasov

It's not exactly what I mean. The `*/3` notation in your example implies triggering on `1 4 7 10 ...` within every month. My suggestion is allowing to combine `@every`...

Implementing ISO 8601 repeating intervals really makes sense. The question is should it be implemented in dkron or in [robfig/cron](https://github.com/robfig/cron)? By the way, [the implementation in ajvb/kala](https://github.com/ajvb/kala/blob/master/job/job.go#L257) could help here.

The `Validate()` and hooks are not working on the root struct (`CLI` in the examples above) either.

Catching out of bounds error would make sense too

Any plans to implement this?

I'm not sure if I understand your question correctly. I'll write what I've found out since I opened the issue. 1. To preserve the order of fields, you need to...

https://github.com/getkin/kin-openapi did use https://github.com/ghodss/yaml but they switched to https://github.com/invopop/yaml for some reason. https://github.com/ghodss/yaml seems to keep the order of the fields when converted.

Well, it's somewhere inside [convertToJSONableObject](https://github.com/invopop/yaml/blob/main/yaml.go#L137) in [invopop/yaml](https://github.com/invopop/yaml) because [go-yaml/yaml](https://github.com/go-yaml/yaml) keeps the ordering when YAML is converted to map.