Skip to content

Commit

Permalink
setting default as false in v3, ref: #20
Browse files Browse the repository at this point in the history
  • Loading branch information
gautamkrishnar authored Jan 16, 2024
1 parent 6c724fb commit dcf0eb1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ If you use the workflow as mentioned via GitHub actions following are the option
| `committer_email` | `[email protected]` | Email id used while committing to the repo | No |
| `time_elapsed` | `50` | Time elapsed from the previous commit to trigger a new automated commit (in days) | No |
| `auto_push` | `true` | Defines if the workflow pushes the changes automatically | No |
| `auto_write_check` | `true` | Specifies whether the workflow will verify the repository's write access privilege for the token before executing | No |
| `auto_write_check` | `false` | Specifies whether the workflow will verify the repository's write access privilege for the token before executing | No |

### For Javascript Library
If you are using the JS Library version of the project, please consult the function's DocString in [library.js](library.js) to see the list of available parameters.
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ inputs:
required: false
auto_write_check:
description: "Specifies whether the workflow will verify the repository's write access privilege for the token before executing"
default: "true"
default: "false"
required: false

runs:
Expand Down

0 comments on commit dcf0eb1

Please sign in to comment.