Unai Martinez-Corral

Results 593 comments of Unai Martinez-Corral

@sammcj there was no significant update in almost three years. This feature was requested as soon as GitHub Actions were released: https://github.com/actions/starter-workflows/issues/245. Meanwhile, workarounds such as composite actions or reusable...

@paulhutchings, in [pyTooling/Actions](https://github.com/pyTooling/Actions) we use a `Params` job to generate an object of "global parameters" which we can then use in any job. See: [![](https://github.com/pyTooling/Actions/raw/main/ExamplePipeline.png)](https://github.com/pyTooling/Actions) - [Params.yml](https://github.com/pyTooling/Actions/blob/d8c384ffcbd9e4adcd2071b87f1ce482c04354df/.github/workflows/Params.yml#L42-L52) - [ExamplePipeline.yml](https://github.com/pyTooling/Actions/blob/main/ExamplePipeline.yml) ```yml...

> Maybe `env` is not the right mechanism for some of these use cases. What I'd like to see at least is for the Actions YAML parser to support aliases...

@marckhouzam can we please have this milestoned and merged?

@marckhouzam the CI workflow will: - Build an HTML site using Hugo. - Upload it as an artifact (zipfile). - Push it to branch `gh-pages` (always overwriting the content of...

FTR, #1245 is waiting for #1428 to be merged.

FTR, I just rebased #1428 to remove merge conflicts.

IIRC, cobra (or pflag) don't support passing args before a subcommand, or mixing `args subcommand args`. Particularly, I don't think a convention exists to interpret the args before the subcommand...