diff --git a/README.md b/README.md index 8bf931c..1bdd99a 100644 --- a/README.md +++ b/README.md @@ -77,6 +77,7 @@ jobs: | ignore-git-history-baseline | true | forces a full history scan | Boolean | No | false | | debug | true | Debug mode | Boolean | No | false | | log_path | results/ | The directory path to specify where the logs should be written to on debug mode. | String | No | working dir | +| disable-active-verification | true | Disable active verification of secrets | Boolean | No | false | ## Checks Upon adding the action, two new checks will become visible on pull requests: diff --git a/action.yaml b/action.yaml index fe3e30b..948eeca 100644 --- a/action.yaml +++ b/action.yaml @@ -82,6 +82,10 @@ inputs: description: "Debug mode" required: false default: "false" + disable_active_verification: + description: "Disable active verification" + required: false + default: "false" log_path: description: "The directory path to specify where the logs should be written to on debug mode. Default to the current working directory" required: false