Skip to content

Releases: stefanzweifel/git-auto-commit-action

v4.7.2

24 Oct 09:42
Compare
Choose a tag to compare

This release basically reverts the Action to the state of v4.6.0. Multiple users reported that the changes made in v4.7.0 and v4.7.1 broke their workflows. Apologies for that!

Changed

  • Revert change to fix git-checkout with special characters in branch names #122

v4.7.1

22 Oct 05:38
Compare
Choose a tag to compare

Removed

  • Remove checkout_options as it broke everything #120

v4.7.0

21 Oct 18:47
Compare
Choose a tag to compare

Added

  • Add checkout_options #115

v4.6.0

11 Oct 18:37
Compare
Choose a tag to compare

Changed

  • Make "commit_message" optional and set default commit message to "Apply automatic changes" #103, #110

Fixes

  • Better support for branch names with special characters in them #108

v4.5.1

11 Sep 09:21
Compare
Choose a tag to compare

Removed

  • Remove orphan branch feature added in #95 which broke stuff (#98)

v4.5.0

10 Sep 17:49
Compare
Choose a tag to compare

Added

  • Create orphan branch if branch does not exist #95

v4.4.1

16 Aug 18:06
Compare
Choose a tag to compare

Changed

  • Include given file_pattern in git dirty check #91

v4.4.0

26 Jun 19:08
Compare
Choose a tag to compare

Added

  • Add option to skipt the dirty check and always try to create and push a commit #82, #84

v4.3.0

16 May 11:54
Compare
Choose a tag to compare

Note: Since v4.3.0 we provide major version tags. You can now use stefanzweifel/git-auto-commit-action@v4 to always use the latest release of a major version. See #77 for details.

Added

  • Add new push_options-input. This feature makes it easier for you to force-push commits to a repository. #78, #72

Diff

v4.2.0

10 May 11:21
Compare
Choose a tag to compare

Changed

branch-value for pull_request-event is now optional

We've updated the default branch value to be ${{ github.head_ref }} instead of ``. Due to this change, you no longer have to set a branch-value when listening to the `pull_request` event.

This change now allows you to create a single workflow which listens both to the pull_request and push-event.

name: php-cs-fixer

on:
  pull_request:
  push:
    branches:
      - master

jobs:
  php-cs-fixer:
    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2
      with:
        ref: ${{ github.head_ref }}

    - name: Run php-cs-fixer
      uses: docker://oskarstark/php-cs-fixer-ga

    - uses: stefanzweifel/[email protected]
      with:
        commit_message: Apply php-cs-fixer changes

Thanks to @spawnia for pointing this out and for cleaning up the README.