From e886bea8615e34a4b387b48aaa93107f0cf6fffe Mon Sep 17 00:00:00 2001 From: Gareth Rushgrove Date: Wed, 30 Oct 2019 10:42:36 +0000 Subject: [PATCH] Remove args for the moment until I find a pattern that works --- README.md | 2 -- action.yml | 4 +--- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/README.md b/README.md index ec711aa..1570232 100644 --- a/README.md +++ b/README.md @@ -27,5 +27,3 @@ passed to the action using `with`, as demonstrated with `files` in the above exa | policy | policy | Where to find the policy folder or files | | namespace | main | The Rego namespace to use for testing | | output | stdout | How to format the output from Conftest (stdout, json or tap) | -| args | - | Any additional arguments to pass to Conftest | - diff --git a/action.yml b/action.yml index 67b57b2..e8bebcd 100644 --- a/action.yml +++ b/action.yml @@ -17,8 +17,6 @@ inputs: output: description: "Output format for results" default: "stdout" - args: - description: "Any additional arguments to pass to Conftest" runs: using: 'docker' image: 'docker://instrumenta/conftest:latest' @@ -30,4 +28,4 @@ runs: - ${{ inputs.policy }} - --namespace - ${{ inputs.namespace }} - - ${{ inputs.args }} ${{ inputs.files }} + - ${{ inputs.files }}