From 4cd59e125839dbd249b052165c684611d5a00ff2 Mon Sep 17 00:00:00 2001 From: Jlrine2 Date: Mon, 11 May 2020 13:18:02 -0800 Subject: [PATCH] quote args in example Usage (#17) Github actions will give an yaml syntax error on a non quoted string that begins with an "*" --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 09c8f14..e20080c 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ jobs: - name: cfn-lint uses: scottbrenner/cfn-lint-action@master with: - args: **/*.yaml + args: "**/*.yaml" ``` See [Basic Usage](https://github.com/aws-cloudformation/cfn-python-lint#basic-usage) for full usage details.