From 67c3b74fddfb97c8492ca96abcb5a6bc5be1f18d Mon Sep 17 00:00:00 2001 From: BastianZim <10774221+BastianZim@users.noreply.github.com> Date: Sat, 17 Oct 2020 14:52:14 +0200 Subject: [PATCH] Fixed code block --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6bafd2a..93bf939 100644 --- a/README.md +++ b/README.md @@ -41,9 +41,9 @@ By default, this action runs all the hooks against all the files. `extra_args` Here's a sample step configuration that only runs the `flake8` hook against all the files (use the template above except for the `pre-commit` action): ```yaml - - uses: pre-commit/action@v2.0.0 - with: - extra_args: flake8 --all-files +- uses: pre-commit/action@v2.0.0 + with: + extra_args: flake8 --all-files ``` ### In private repositories