From ad09468e5353d1dc2a100218f71c3f7891a2b94e Mon Sep 17 00:00:00 2001 From: Aaron Collier Date: Tue, 14 May 2024 10:02:30 +0000 Subject: [PATCH 1/2] Add clarity on not using quotes with flags As noted in #75 --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index cf0ef6fe..47dad39a 100644 --- a/README.md +++ b/README.md @@ -130,6 +130,10 @@ with: Space-delimited list of flags for the Vale CLI. To see a full list of available flags, run `vale -h`. +Note that flags should not include quotes. +So while `--glob='*.txt'" works with Vale, it does not work with this action. +Use the flag without quotes, as in the following example: + ```yaml with: vale_flags: "--glob=*.txt" From 3f7ad46be0b22665e7b5b6647e522b86e30d7c30 Mon Sep 17 00:00:00 2001 From: Aaron Collier Date: Tue, 14 May 2024 10:03:13 +0000 Subject: [PATCH 2/2] Fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 47dad39a..0f7b3946 100644 --- a/README.md +++ b/README.md @@ -131,7 +131,7 @@ with: Space-delimited list of flags for the Vale CLI. To see a full list of available flags, run `vale -h`. Note that flags should not include quotes. -So while `--glob='*.txt'" works with Vale, it does not work with this action. +So while `--glob='*.txt'` works with Vale, it does not work with this action. Use the flag without quotes, as in the following example: ```yaml