diff --git a/README.md b/README.md index efd3563..fac58d6 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,7 @@ And some optional ones: * `--waitFor` for the time to wait for test to finish (int + one of: milli, sec, min). Default is `5sec`, * `--secretName=''` is an optional flag specifying the name of a Secret to use for connecting endpoint, +* `--filteredOperations=` allows to filter a list of operations to launch a test for, * `--operationsHeaders=` allows to override some operations headers for the tests to launch. ### How to use it? diff --git a/action.yml b/action.yml index 6346a7c..96dfddf 100644 --- a/action.yml +++ b/action.yml @@ -29,7 +29,7 @@ inputs: description: 'The name of a Secret to use for connecting test endpoint' required: false default: '' - filterOperations: + filteredOperations: description: 'JSON that allows to filter a list of operations to launch a test for' required: false default: '' @@ -47,7 +47,7 @@ runs: microcks-cli test '${{ inputs.apiNameAndVersion }}' ${{ inputs.testEndpoint }} ${{ inputs.runner }} \ --microcksURL=${{ inputs.microcksURL }} --waitFor=${{ inputs.waitFor }} --secretName='${{ inputs.secretName }}' \ --keycloakClientId=${{ inputs.keycloakClientId }} --keycloakClientSecret=${{ inputs.keycloakClientSecret }} \ - --insecure --filterOperations='${{ inputs.filterOperations }}' --operationsHeaders='${{ inputs.operationsHeaders }}' + --insecure --filteredOperations='${{ inputs.filterOperations }}' --operationsHeaders='${{ inputs.operationsHeaders }}' branding: icon: 'upload-cloud' color: 'blue'