Skip to content

Releases: EndBug/add-and-commit

v7.5.0

03 Dec 18:53
8c12ff7
Compare
Choose a tag to compare

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

30 Sep 15:06
d777621
Compare
Choose a tag to compare

Added:

  • Added pull input: you can use it to change the arguments of the git pull command (#294)

Changed:

  • Deprecated pull_strategy: use pull instead (#294)

v7.3.0

06 Sep 14:52
Compare
Choose a tag to compare

Added:

  • Added custom committer support via the committer_name and committer_email inputs (#264)
  • Added commit_sha output (#275)
  • Added pathspec_error_handling input (#280)

v7.2.1

11 May 17:48
2bdc0a6
Compare
Choose a tag to compare

Fixed:

  • Fixed an issue with missing outputs (#189)

v7.2.0

22 Apr 17:02
a3adef0
Compare
Choose a tag to compare

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

16 Apr 06:24
3276c15
Compare
Choose a tag to compare

Fixed:

  • Git args parsing now correctly handles quotes, that can be used for multi-word arguments (issue #166)

v7.1.1

04 Apr 10:39
f1d41de
Compare
Choose a tag to compare

Fixed:

  • Git args parsing has been improved, and now handles spaces correctly (issue #154)

v7.1.0

03 Mar 08:11
701772d
Compare
Choose a tag to compare

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

16 Jan 16:20
b3c7c1e
Compare
Choose a tag to compare

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).

v6.2.0

23 Dec 13:31
dbf207a
Compare
Choose a tag to compare

You can see the full changelog here.

Added:

  • push input: allow for custom git push arguments to be used, more info in the README. (issue #100)