Releases: EndBug/add-and-commit
Releases · EndBug/add-and-commit
v6.1.0
You can see the full changelog here.
Added:
token
input: you can now use this instead of setting theGITHUB_TOKEN
env variable, which has been deprecated. This input is optional, its default value is the defaultsecrets.GITHUB_TOKEN
. You only need to use this if you want the action to run with a PAT. (issue #110)
Deprecated:
GITHUB_TOKEN
: the use of this env variable is now deprecated in favor of thetoken
input, you'll start receiving warnings if you keep using it. (issue #110)
v6.0.0
You can see the full changelog here.
Added:
- (BREAKING?) Multiple git commands: support JSON/YAML arrays for the
add
andremove
parameters (you still need pass a string as input, but that can be parsed to an array by the action). Using them will run multiple commands in succession. I don't think this will be really breaking anything, but I've used a major version change just to be sure. There's more info about this stuff on the README. (issue #95)
v5.3.0
You can see the full changelog here.
Added:
- Outputs: the action now has 3 outputs (
committed
,pushed
, andtagged
) that will be set to eithertrue
orfalse
to tell you what the action has done. The outputs are also shown in the action logs.
v5.2.0
v5.1.2
v5.1.1
v5.1.0
v5.0.0
You can see the full changelog here.
Changed:
- [BREAKING] Action parameters: multiple action parameters have been changed, refer to the docs for better info
- The code is now entirely in TypeScript (PR #57)
Fixed:
- Improved input checks
- Logs are now displayed on Windows too
- Remove unnecessary steps
- Remove unused dependencies
v4.4.0
This release adds PR support to the action: you can now use when running the workflow with the pull_request
event, and the action will push commits to the head branch.
Ref: issue #48