From 51a29d6960861d139fbbab032848494553797d03 Mon Sep 17 00:00:00 2001 From: Federico Builes Date: Fri, 11 Nov 2022 14:56:07 +0100 Subject: [PATCH] Updating action.yml to include `*-check` config options. --- action.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/action.yml b/action.yml index 5f1d228e5..d2ce0e485 100644 --- a/action.yml +++ b/action.yml @@ -35,6 +35,14 @@ inputs: external-repo-token: description: A token for fetching external configuration file if it lives in another repository. It is required if the repository is private required: false + license-check: + description: A boolean to determine if license checks should be performed + required: false + default: true + vulnerability-check: + description: A boolean to determine if vulnerability checks should be performed + required: false + default: true runs: using: 'node16'