Hi, thanks for this awesome tool.
I've been using it in CI and locally like this:
git ls-files -z ".github/*/*.yml" "*/action.yml" | xargs -0 action-validator --verbose
This is bit of an incantation and I would love for the tool to be a bit more ergonomic. Given that the focus is on GitHub Actions, it should be safe to assume that any of the files that need validating are tracked by Git, so I think we could bake in the git ls-files -z ".github/*/*.yml" "*/action.yml", so that the tool could be used like this:
this would be similar to how actionlint works, it can be simply used like this:
Hi, thanks for this awesome tool.
I've been using it in CI and locally like this:
This is bit of an incantation and I would love for the tool to be a bit more ergonomic. Given that the focus is on GitHub Actions, it should be safe to assume that any of the files that need validating are tracked by Git, so I think we could bake in the
git ls-files -z ".github/*/*.yml" "*/action.yml", so that the tool could be used like this:this would be similar to how
actionlintworks, it can be simply used like this: