Replies: 1 comment 3 replies
-
Thanks for the question @jmfayard. I'm guessing GitHub Actions is doing some magic under the hood there - in YAML, an empty value like that is considered a null value. One solution might be to write a custom serializer for |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello
I try to model Github Actions workflow like this
Deserialization works if I pass parameters to
push:
andpull_request:
But GitHub Actions also allows to say:
Here I expect:
YamlWorkflowTriggers(Push(), PullRequest())
But I get
YamlWorkflowTriggers(null, null)
as if the YAML file was
Beta Was this translation helpful? Give feedback.
All reactions