From dc855337b2777e5e5775e0c3026b46e9fe827b60 Mon Sep 17 00:00:00 2001 From: Joshua Nelson Date: Fri, 20 Aug 2021 07:04:20 -0500 Subject: [PATCH] Fix name of `github_token` parameter (#87) It was correctly `github_token` in the code and examples, but it was shown as `token` in the docs. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7f61f05..70fcaad 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ If vulnerabilities are found by `npm audit`, Action triggered by push, schedule |issue_assignees|false|N/A|Issue assignees (separated by commma)| |issue_labels|false|N/A|Issue labels (separated by commma)| |issue_title|false|npm audit found vulnerabilities|Issue title| -|token|true|N/A|GitHub Access Token.
${{ secrets.GITHUB_TOKEN }} is recommended.| +|github_token|true|N/A|GitHub Access Token.
${{ secrets.GITHUB_TOKEN }} is recommended.| |working_directory|false|N/A|The directory which contains package.json (since v1.4.0)| |dedupe_issues|false|false|If 'true', action will not create a new issue when one is already open (since v1.5.0)|