actions-includes
actions-includes copied to clipboard
Allows including an action inside another action (by preprocessing the Yaml file). This is how composite actions should have worked.
Reusable workflows are a new feature [1] that allow a workflow to be dispatched from another workflow. Using reusable workflows involves creating a job with a `uses` key and no...
I have a very simple test here: https://github.com/devkeydet/actions-includes-test/blob/main/.github/workflows-src/convertme.yml I installed actions-includes using pip. I run the following command: _python -m actions_includes ./.github/workflows-src/convertme.yml ./.github/workflows/converted.yml_ I get the following error: _Expanding ./.github/workflows-src/convertme.yml...
They need to be indented more.
I have this in my main src action (not in the include file) and it causes an error: ``` env: GITHUB_CONTEXT: ${{ toJSON(github) }} ``` Error dump is: ``` Traceback...
Rather than using ``` python -m actions_includes ./.github/src/my-action.yml ./.github/workflows/my-action.yml ``` individually for each action, it would be nice if it supported folders, such as: ``` python -m actions_includes ./.github/src ./.github/workflows...
When using the docker container run command to execute, it gives this error: ``` fatal: not a git repository (or any parent up to mount point /github) Stopping at filesystem...
I have an include file within `.github/includes/my-action.yml` When using ``` steps: - includes: my-action ``` it tries to find `.github/includes/actions/my-action/action.yml` file, which doesn't exist. If I try to use: ```...
`if: needs.detect-changes.outputs.trigger == 'true'` is being transpiled to `if: true`
I tried to include an action which would produce an output, but these instructions were ignored by the script.
Wow. This project is amazing. 👏 👏 👏 Is is possible to include unique step ids in the expanded plan, so that step outputs in `includes:` template? As a motivating...