Changed the extended example to correctly use quotes for strings
This commit is contained in:
parent
8c3ed373fb
commit
929b42c4cc
14
README.md
14
README.md
|
@ -30,11 +30,11 @@ The following is an extended example with all possible options available for thi
|
||||||
with:
|
with:
|
||||||
# Optional, but recommended
|
# Optional, but recommended
|
||||||
# Defaults to "Apply automatic changes"
|
# Defaults to "Apply automatic changes"
|
||||||
commit_message: Automated Change
|
commit_message: 'Automated Change'
|
||||||
|
|
||||||
# Optional branch name where commit should be pushed to.
|
# Optional branch name where commit should be pushed to.
|
||||||
# Defaults to the current branch.
|
# Defaults to the current branch.
|
||||||
branch: feature-123
|
branch: 'feature-123'
|
||||||
|
|
||||||
# Optional. Used by `git-commit`.
|
# Optional. Used by `git-commit`.
|
||||||
# See https://git-scm.com/docs/git-commit#_options
|
# See https://git-scm.com/docs/git-commit#_options
|
||||||
|
@ -45,16 +45,16 @@ The following is an extended example with all possible options available for thi
|
||||||
# See the `pathspec`-documentation for git
|
# See the `pathspec`-documentation for git
|
||||||
# - https://git-scm.com/docs/git-add#Documentation/git-add.txt-ltpathspecgt82308203
|
# - https://git-scm.com/docs/git-add#Documentation/git-add.txt-ltpathspecgt82308203
|
||||||
# - https://git-scm.com/docs/gitglossary#Documentation/gitglossary.txt-aiddefpathspecapathspec
|
# - https://git-scm.com/docs/gitglossary#Documentation/gitglossary.txt-aiddefpathspecapathspec
|
||||||
file_pattern: src/*.js tests/*.js *.php
|
file_pattern: 'src/*.js tests/*.js *.php'
|
||||||
|
|
||||||
# Optional local file path to the repository
|
# Optional local file path to the repository
|
||||||
# Defaults to the root of the repository
|
# Defaults to the root of the repository
|
||||||
repository: .
|
repository: '.'
|
||||||
|
|
||||||
# Optional commit user and author settings
|
# Optional commit user and author settings
|
||||||
commit_user_name: My GitHub Actions Bot # defaults to "GitHub Actions"
|
commit_user_name: 'My GitHub Actions Bot' # defaults to "GitHub Actions"
|
||||||
commit_user_email: my-github-actions-bot@example.org # defaults to "actions@github.com"
|
commit_user_email: 'my-github-actions-bot@example.org' # defaults to "actions@github.com"
|
||||||
commit_author: Author <actions@github.com> # defaults to author of the commit that triggered the run
|
commit_author: 'Author <actions@github.com>' # defaults to author of the commit that triggered the run
|
||||||
|
|
||||||
# Optional tag message
|
# Optional tag message
|
||||||
# Action will create and push a new tag to the remote repository and the defined branch
|
# Action will create and push a new tag to the remote repository and the defined branch
|
||||||
|
|
Loading…
Reference in New Issue