Skip to content

Releases: stefanzweifel/git-auto-commit-action

v4.5.0

10 Sep 17:49

Choose a tag to compare

Added

  • Create orphan branch if branch does not exist #95

v4.4.1

16 Aug 18:06

Choose a tag to compare

Changed

  • Include given file_pattern in git dirty check #91

v4.4.0

26 Jun 19:08

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

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

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

Choose a tag to compare

Fixes

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

v4.1.5

23 Apr 18:47

Choose a tag to compare

Added

  • Update file_pattern to support multiple file paths #65

Changes

  • Revert changes made in v4.1.4 #63

Fixes

  • Fix issue with commit_options #64

v4.1.4

22 Apr 10:59

Choose a tag to compare

Fixed

  • Fix bug introduced in previous version, where git user configuration has been placed inline #62

v4.1.3

18 Apr 08:56

Choose a tag to compare

Changed

  • Place Git user configuration inline #59

v4.1.2

03 Apr 07:20

Choose a tag to compare

Fixes

  • Fix Issue with changes_detected-output #57