2019-06-10 12:30:57 +00:00
# Changelog
2019-06-10 12:41:03 +00:00
All notable changes to this project will be documented in this file.
2019-06-10 12:30:57 +00:00
2019-06-10 12:41:03 +00:00
The format is based on [Keep a Changelog ](http://keepachangelog.com/en/1.0.0/ )
and this project adheres to [Semantic Versioning ](http://semver.org/spec/v2.0.0.html ).
2020-02-24 19:02:46 +00:00
## [Unreleased](https://github.com/stefanzweifel/git-auto-commit-action/compare/v4.0.0...HEAD)
2020-02-06 20:15:35 +00:00
> TBD
2020-02-24 19:02:46 +00:00
## [v4.0.0](https://github.com/stefanzweifel/git-auto-commit-action/compare/v3.0.0...v4.0.0) - 2020-02-24
### Changed
- Switch Action to use `node12` -environment instead of `docker` .
2020-02-06 20:15:35 +00:00
## [v3.0.0](https://github.com/stefanzweifel/git-auto-commit-action/compare/v2.5.0...v3.0.0) - 2020-02-06
2019-12-18 10:59:49 +00:00
2020-02-05 19:36:12 +00:00
### Added
- Add `commit_user_name` , `commit_user_email` and `commit_author` input options for full customzation on how the commit is being created [#39 ](https://github.com/stefanzweifel/git-auto-commit-action/pull/39 )
2020-02-06 19:43:04 +00:00
### Changed
- Make the `branch` input option optional [#41 ](https://github.com/stefanzweifel/git-auto-commit-action/pull/41 )
2020-02-04 18:43:08 +00:00
### Removed
- Remove the need of a GITHUB_TOKEN. Users now have to use `actions/checkout@v2` or higher [#36 ](https://github.com/stefanzweifel/git-auto-commit-action/pull/36 )
2019-12-18 10:59:49 +00:00
## [v2.5.0](https://github.com/stefanzweifel/git-auto-commit-action/compare/v2.4.0...v2.5.0) - 2019-12-18
2019-11-30 18:40:57 +00:00
2019-12-18 10:57:16 +00:00
### Added
- Add new `repository` -argument [#22 ](https://github.com/stefanzweifel/git-auto-commit-action/pull/22 )
### Changed
- Extract logic of the Action into methods and into a separate file [#24 ](https://github.com/stefanzweifel/git-auto-commit-action/pull/24 )
2019-12-18 10:59:49 +00:00
2019-11-30 18:40:57 +00:00
## [v2.4.0](https://github.com/stefanzweifel/git-auto-commit-action/compare/v2.3.0...v2.4.0) - 2019-11-30
2019-11-04 19:07:50 +00:00
2019-11-27 19:07:24 +00:00
### Added
- Commit untracked files [#19 ](https://github.com/stefanzweifel/git-auto-commit-action/pull/19 ) (fixes [#16 ](https://github.com/stefanzweifel/git-auto-commit-action/issues/16 ))
2019-11-30 12:02:21 +00:00
- Add support for Git-LFS [#21 ](https://github.com/stefanzweifel/git-auto-commit-action/pull/21 ) (fixes [#20 ](https://github.com/stefanzweifel/git-auto-commit-action/issues/20 ))
2019-11-27 19:07:24 +00:00
2019-12-18 10:59:49 +00:00
2019-11-04 19:07:50 +00:00
## [v2.3.0](https://github.com/stefanzweifel/git-auto-commit-action/compare/v2.2.0...v2.3.0) - 2019-11-04
2019-11-27 19:07:24 +00:00
### Added
2019-11-04 19:07:50 +00:00
- Add a new `commit_option` -argument. Allows users to define additional commit options for the `git-commit` command. [#14 ](https://github.com/stefanzweifel/git-auto-commit-action/pull/15 )
2019-10-26 14:33:17 +00:00
2019-12-18 10:59:49 +00:00
2019-10-26 14:33:17 +00:00
## [v2.2.0](https://github.com/stefanzweifel/git-auto-commit-action/compare/v2.1.0...v2.2.0) - 2019-10-26
### Added
- Add new `file_pattern` -argument. Allows users to define which files should be added in the commit. [#13 ](https://github.com/stefanzweifel/git-auto-commit-action/pull/13 )
2019-09-20 19:20:34 +00:00
2019-12-18 10:59:49 +00:00
2019-09-20 19:20:34 +00:00
## [v2.1.0](https://github.com/stefanzweifel/git-auto-commit-action/compare/v2.0.0...v2.1.0) - 2019-09-20
### Added
- Add `branch` -argument to determine, to which branch changes should be pushed. See README for usage details.
### Fixed
- Fixes Issue where changes couldn't be pushed to GitHub due to wrong ref-name.
### Removed
- Remove `commit_author_email` and `commit_author_name` arguments. The `$GITHUB_ACTOR` is now used as the Git Author
2019-08-31 16:47:56 +00:00
## [v2.0.0](https://github.com/stefanzweifel/git-auto-commit-action/compare/v1.0.0...v2.0.0) - 2019-08-31
2019-09-20 19:20:34 +00:00
### Changed
2019-08-31 16:47:56 +00:00
- Make Action Compatible with latest beta of GitHub Actions [#3 ](https://github.com/stefanzweifel/git-auto-commit-action/pull/3 )
2019-06-10 12:41:03 +00:00
2019-06-10 14:06:47 +00:00
## v1.0.0 - 2019-06-10
2019-06-10 12:41:03 +00:00
### Added
- Add Core Logic for Action
2019-06-10 14:06:47 +00:00