From e057a1376335d7a658f853598d98c6d4d8c71013 Mon Sep 17 00:00:00 2001 From: Lode Claassen Date: Mon, 29 Jun 2020 22:04:20 +0200 Subject: [PATCH] Fix run-on-blame ignoring standards file --- src/run-on-blame.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/run-on-blame.ts b/src/run-on-blame.ts index 3de1e42..c10f3ee 100644 --- a/src/run-on-blame.ts +++ b/src/run-on-blame.ts @@ -14,7 +14,8 @@ export async function runOnBlame(files: string[]): Promise { const lintResults = await lint( files, - core.getInput('phpcs_path', { required: true }) + core.getInput('phpcs_path', { required: true }), + options ); const dontFailOnWarning =