ghat
ghat copied to clipboard
π Reuse GitHub Actions workflows across repositories
From https://github.com/fregante/ghat/issues/26#issuecomment-849841576: > introduce `--no-header` or something, which: > - does not add env > - does not add the comment > >env would then be preserved in place.
Is there a way to fetch templates from a private repo? Is it possible to do so from a batch process? I saw #2 mentioned this, but it looks like...
This currently "works", but shouldn't: ```sh npx ghat fregante/ghatemplates/supppppp.yml ``` It creates an empty `supppppp.yml` file instead of throwing. Related: https://github.com/Rich-Harris/degit/issues/129
Currently the only customization possible is via the global `env` property, but unfortunately this isn't available everywhere in the workflow and can't be used to customize a workflow template. I...
`ghat` is currently build around `degit`, which only supports remote URLs. Having it also support local paths would be useful, e.g.: ```js npx ghat /Users/fregante/Web/projects-modules/ghatemplates ``` The easy way to...
If `ghat` fetches/finds a single template, it could also rename it to whatever the user prefers. Example: ```yml npx ghat fregante/ghat/templates/node --out test.yml ``` But perhaps this could already be...