diff --git a/CHANGELOG.md b/CHANGELOG.md index e593886..75742b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# viash-actions v6.2.0 + +## New functionality + +`pro/generate_documentation_qmd`: add `--query` parameter (PR #35). + # viash-actions v6.1.0 ## New functionality diff --git a/pro/generate-documentation-qmd/action.yml b/pro/generate-documentation-qmd/action.yml index 2c6edc5..55f4304 100644 --- a/pro/generate-documentation-qmd/action.yml +++ b/pro/generate-documentation-qmd/action.yml @@ -58,6 +58,10 @@ inputs: required: false description: | An override for the `--src` parameter in `viash ns list`. Example: `src/`. + query: + required: false + description: | + Filter which components get selected by component and namespace name. Can be a regex. runs: using: 'composite' steps: @@ -96,6 +100,10 @@ runs: extra_args+=(--dest_path "${{ inputs.dest_path }}") fi + if [ ! -z "${{ inputs.query }}" ]; then + extra_args+=(--query "${{ inputs.query }}") + fi + $RUNNER_TEMP/viash_tools/target/docker/quarto/generate_documentation_qmd/generate_documentation_qmd \ --input "./" "${extra_args[@]}" \ --src "${{ inputs.src }}" \