Skip to content

Releases: stefanzweifel/git-auto-commit-action

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/git-auto-commit-action@v4.2.0
      with:
        commit_message: Apply php-cs-fixer changes

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

v4.1.6

28 Apr 11:28
Compare
Choose a tag to compare

Fixes

  • Fix issue where tags could not be created correctly #68