From 2f38ecd3fd776d29c4022f30296e389a4d3d2a01 Mon Sep 17 00:00:00 2001 From: Adrien Pessu <7055334+adrienpessu@users.noreply.github.com> Date: Wed, 2 Aug 2023 16:15:43 +0200 Subject: [PATCH] add deny_list as paramter --- action.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/action.yml b/action.yml index ea62438..420cf00 100644 --- a/action.yml +++ b/action.yml @@ -47,6 +47,9 @@ inputs: comment-summary-in-pr: description: A boolean to determine if the report should be posted as a comment in the PR itself. Setting this to true requires you to give the workflow the write permissions for pull-requests required: false + deny_list: + description: A comma-separated list of dependencies to deny (e.g. "pkg:npm/express, pkg:pip/pycrypto") + required: false runs: using: 'node16' main: 'dist/index.js'