diff --git a/CHANGELOG.md b/CHANGELOG.md index 2dacf4a..e892df9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,11 @@ All notable changes to this project will be documented in this file. 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). -## [Unreleased](https://github.com/stefanzweifel/git-auto-commit-action/compare/v2.2.0...HEAD) +## [Unreleased](https://github.com/stefanzweifel/git-auto-commit-action/compare/v2.3.0...HEAD) + +## [v2.3.0](https://github.com/stefanzweifel/git-auto-commit-action/compare/v2.2.0...v2.3.0) - 2019-11-04 + +- 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) ## [v2.2.0](https://github.com/stefanzweifel/git-auto-commit-action/compare/v2.1.0...v2.2.0) - 2019-10-26 diff --git a/README.md b/README.md index f8802a8..95595aa 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ This Action has been inspired and adapted from the [auto-commit](https://github. Add the following step at the end of your job. ```yaml -- uses: stefanzweifel/git-auto-commit-action@v2.2.0 +- uses: stefanzweifel/git-auto-commit-action@v2.3.0 with: commit_message: Apply automatic changes branch: ${{ github.head_ref }} @@ -62,7 +62,7 @@ jobs: uses: docker://oskarstark/php-cs-fixer-ga - name: Commit changed files - uses: stefanzweifel/git-auto-commit-action@v2.2.0 + uses: stefanzweifel/git-auto-commit-action@v2.3.0 with: commit_message: Apply php-cs-fixer changes branch: ${{ github.head_ref }}