Releases: EndBug/add-and-commit
Releases · EndBug/add-and-commit
v7.5.0
Added:
- Support remote branch creation: use the
branch_mode
input to make the action create a new branch when there's no branch with the given name on the remote (#329)
v7.4.0
v7.3.0
v7.2.1
Fixed:
- Fixed an issue with missing outputs (#189)
v7.2.0
Added:
default_author
: this input allows you to control how the action fills missing author name or email (issue #167)github_token
input introduced to get token to use in API calls
Fixed:
- Git args are now parsed with
string-argv
, the format has to comply with what the package can parse (issue #179)
v7.1.2
Fixed:
- Git args parsing now correctly handles quotes, that can be used for multi-word arguments (issue #166)
v7.1.1
Fixed:
- Git args parsing has been improved, and now handles spaces correctly (issue #154)
v7.1.0
You can see the full changelog here.
Added:
pull_strategy
: you can use 'NO-PULL' to prevent the action from pulling from the remote at all.
v7.0.0
You can see the full changelog here.
Changed:
- [BREAKING] The token input has been removed: author info will be filled using the GitHub Actor, instead of fetching info from the GitHub API.
The commits will be authored using the GitHub no-reply email associated with the account: username@users.noreply.github.com - [BREAKING] Because of the change above, the author will now be the user that triggered the action run, and not the author of the last commit: while the two are often the same person, there are instances where they might differ (e.g. when a workflow run is triggered manually).