diff options
author | Josh Spicer <joshspicer@github.com> | 2022-05-25 21:27:51 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-25 21:27:51 +0300 |
commit | 064014481c96f7fb2d5df5881b969b32734cb988 (patch) | |
tree | afbda3788414a91dc3a545a823eee2b371231ea3 | |
parent | da536e1feb2063e6d0cdaf240cd83bd859c57d16 (diff) |
Update test-manual.yaml
-rw-r--r-- | .github/workflows/test-manual.yaml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/test-manual.yaml b/.github/workflows/test-manual.yaml index e338099..515805e 100644 --- a/.github/workflows/test-manual.yaml +++ b/.github/workflows/test-manual.yaml @@ -10,6 +10,9 @@ on: description: 'Base image' required: true default: 'ubuntu:focal' + logLevel: + description: 'Log Level (info/debug/trace)' + default: 'info' jobs: test: @@ -18,4 +21,4 @@ jobs: - uses: actions/checkout@v2 - name: " Testing '${{ github.event.inputs.features }}' against '${{ github.event.inputs.baseImage }}'" - run: npx --yes ./devcontainers-cli-0.3.0.tgz features-test -f ${{ github.event.inputs.features }} -i ${{ github.event.inputs.baseImage }} -d `pwd` + run: npx --yes ./devcontainers-cli-0.3.0.tgz features test --features ${{ github.event.inputs.features }} --base-image ${{ github.event.inputs.baseImage }} --collection-folder `pwd` --log-level ${{ github.event.inputs.logLevel }} |