From 03246c1ceed0c91e9b14bf5a366ba777eb931d5e Mon Sep 17 00:00:00 2001 From: Karol <50302144+karolswdev@users.noreply.github.com> Date: Sat, 17 Sep 2022 07:33:25 -0600 Subject: [PATCH] Changed the extended example to correctly use quotes for strings (#196) Co-authored-by: Stefan Zweifel --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1f776475..58320edb 100644 --- a/README.md +++ b/README.md @@ -29,13 +29,14 @@ The following is an extended example with all available options. with: # Optional. Commit message for the created commit. # Defaults to "Apply automatic changes" - commit_message: Automated Change + commit_message: 'Automated Change' # Optional. Local and remote branch name where commit is going to be pushed # to. Defaults to the current branch. # You might need to set `create_branch: true` if the branch does not exist. branch: feature-123 + # Optional. Options used by `git-commit`. # See https://git-scm.com/docs/git-commit#_options commit_options: '--no-verify --signoff' @@ -45,7 +46,7 @@ The following is an extended example with all available options. # See the `pathspec`-documentation for git # - https://git-scm.com/docs/git-add#Documentation/git-add.txt-ltpathspecgt82308203 # - https://git-scm.com/docs/gitglossary#Documentation/gitglossary.txt-aiddefpathspecapathspec - file_pattern: src/*.js tests/*.js *.php + file_pattern: '*.php src/*.js tests/*.js' # Optional. Local file path to the repository. # Defaults to the root of the repository.