Skip to content

Releases: EndBug/add-and-commit

v6.1.0

22 Dec 20:23
a26f63b
Compare
Choose a tag to compare

You can see the full changelog here.

Added:

  • token input: you can now use this instead of setting the GITHUB_TOKEN env variable, which has been deprecated. This input is optional, its default value is the default secrets.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 the token input, you'll start receiving warnings if you keep using it. (issue #110)

v6.0.0

22 Dec 15:41
21ed6af
Compare
Choose a tag to compare

You can see the full changelog here.

Added:

  • (BREAKING?) Multiple git commands: support JSON/YAML arrays for the add and remove 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

12 Dec 16:54
d192ad0
Compare
Choose a tag to compare

You can see the full changelog here.

Added:

  • Outputs: the action now has 3 outputs (committed, pushed, and tagged) that will be set to either true or false to tell you what the action has done. The outputs are also shown in the action logs.

v5.2.0

11 Nov 17:36
57c075e
Compare
Choose a tag to compare

You can see the full changelog here.

Added:

  • New push option: this lets you tell the action whether to push commit and tags to the repo. The default value is true, so that the default behavior is not changed. (issue #86)

v5.1.2

10 Nov 07:12
9358097
Compare
Choose a tag to compare

You can see the full changelog here.

Fixed:

  • Fixed an issue with the build (issue #88)

v5.1.1

07 Nov 13:09
e0cd865
Compare
Choose a tag to compare

You can see the full changelog here.

Fixed:

  • Fixed typo in parameter name: pull_strategy was written as pull_stategy (PR #83)

v5.1.0

07 Oct 18:11
b5dec7e
Compare
Choose a tag to compare

You can see the full changelog here.

Added:

  • The default commit message now displays the name of the workflow too (issue #64)

v5.0.0

27 Sep 09:42
55e3676
Compare
Choose a tag to compare

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

31 Jul 18:58
a988073
Compare
Choose a tag to compare

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

v4.3.0

29 Jul 17:12
d5f44e7
Compare
Choose a tag to compare

This release add a new option: signoff. When this option is set to true, the commit command will use the --signoff argument.
More info on sign-offs: git docs
Ref: #46