Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

String values in README.md extended example are now correct #196

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 7 additions & 7 deletions README.md
Expand Up @@ -30,11 +30,11 @@ The following is an extended example with all possible options available for thi
with:
# Optional, but recommended
# Defaults to "Apply automatic changes"
commit_message: Automated Change
commit_message: 'Automated Change'

# Optional branch name where commit should be pushed to.
# Defaults to the current branch.
branch: feature-123
branch: 'feature-123'

# Optional. Used by `git-commit`.
# See https://git-scm.com/docs/git-commit#_options
Expand All @@ -45,16 +45,16 @@ The following is an extended example with all possible options available for thi
# 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: 'src/*.js tests/*.js *.php'
stefanzweifel marked this conversation as resolved.
Show resolved Hide resolved

# Optional local file path to the repository
# Defaults to the root of the repository
repository: .
repository: '.'

# Optional commit user and author settings
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_author: Author <actions@github.com> # defaults to author of the commit that triggered the run
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_author: 'Author <actions@github.com>' # defaults to author of the commit that triggered the run

# Optional tag message
# Action will create and push a new tag to the remote repository and the defined branch
Expand Down