From 6fa5a8f9c06198e9949822180a425017f4ef408b Mon Sep 17 00:00:00 2001 From: Sarah Aladetan Date: Thu, 15 Sep 2022 20:07:28 +0000 Subject: [PATCH] add fail-on-scopes input to action config --- action.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/action.yml b/action.yml index 70f3845..77a9372 100644 --- a/action.yml +++ b/action.yml @@ -10,6 +10,10 @@ inputs: description: Don't block PRs below this severity. Possible values are `low`, `moderate`, `high`, `critical`. required: false default: 'low' + fail-on-scopes: + description: Dependency scopes to block PRs on. Comma-separated list. Possible values are 'unknown', 'runtime', and 'development' (e.g. "runtime, development") + required: false + default: 'runtime' base-ref: description: The base git ref to be used for this check. Has a default value when the workflow event is `pull_request` or `pull_request_target`. Must be provided otherwise. required: false