Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

nothing to commit, working tree clean Error: Invalid status code: 1 #204

Closed
dmason30 opened this issue Feb 24, 2022 · 13 comments
Closed

nothing to commit, working tree clean Error: Invalid status code: 1 #204

dmason30 opened this issue Feb 24, 2022 · 13 comments
Labels
bug Something isn't working

Comments

@dmason30
Copy link

dmason30 commented Feb 24, 2022

Version of the Action
v4.x.x

Describe the bug
We seem to be getting this error on every run when there are no change. It only started erroring recently. The file it says is modified is a built javascript file but is probably only whitespace changes hence nothing to commit, we have been using this action for over a year without issue until this point.

Unfortunately this is in a private repo so I am unable to link you and have redacted the repository info below but everything else is verbatim.

Run stefanzweifel/git-auto-commit-action@v4
Started: bash /home/runner/work/_actions/stefanzweifel/git-auto-commit-action/v4/entrypoint.sh
INPUT_REPOSITORY value: .
INPUT_STATUS_OPTIONS: 
INPUT_BRANCH value: 
From https://github.com/xxx/xxx
 * [new branch]      3.23.0         -> origin/3.23.0
 * [new branch]      TA-1911-Cordova-->-Code-Push-->-Ionic/Applow -> origin/TA-1911-Cordova-->-Code-Push-->-Ionic/Applow
 * [new branch]      master         -> origin/master
 * [new tag]         3.22.0         -> 3.22.0
 * [new tag]         3.23.0-beta.0  -> 3.23.0-beta.0
 * [new tag]         3.23.0.alpha.9 -> 3.23.0.alpha.9
M	site/public/vendor/nova-tools/app.js
Your branch is up to date with 'origin/develop'.
INPUT_ADD_OPTIONS: 
INPUT_FILE_PATTERN: .
warning: CRLF will be replaced by LF in site/public/vendor/nova-tools/app.js.
The file will have its original line endings in your working directory
INPUT_COMMIT_OPTIONS: 
INPUT_COMMIT_USER_NAME: GitHub Actions
INPUT_COMMIT_USER_EMAIL: actions@github.com
INPUT_COMMIT_MESSAGE: Publish laravel package assets
INPUT_COMMIT_AUTHOR: dmason30 <dmason30@users.noreply.github.com>
On branch develop
Your branch is up to date with 'origin/develop'.

nothing to commit, working tree clean
Error: Invalid status code: 1
    at ChildProcess.<anonymous> (/home/runner/work/_actions/stefanzweifel/git-auto-commit-action/v4/index.js:[17](https://github.com/TMCApplications/TMC-BACKEND/runs/5316717959?check_suite_focus=true#step:10:17):[19](https://github.com/TMCApplications/TMC-BACKEND/runs/5316717959?check_suite_focus=true#step:10:19))
    at ChildProcess.emit (events.js:[21](https://github.com/xxx/xxx/runs/5316717959?check_suite_focus=true#step:10:21)0:5)
    at maybeClose (internal/child_process.js:1021:16)
    at Process.ChildProcess._handle.onexit (internal/child_process.js:[28](https://github.com/xxx/xxx/runs/5316717959?check_suite_focus=true#step:10:28)3:5) {
  code: 1
}
Error: Invalid status code: 1
    at ChildProcess.<anonymous> (/home/runner/work/_actions/stefanzweifel/git-auto-commit-action/v4/index.js:17:19)
    at ChildProcess.emit (events.js:210:5)
    at maybeClose (internal/child_process.js:1021:16)
    at Process.ChildProcess._handle.onexit (internal/child_process.js:283:5)

Used Workflow

name: "Publish assets"

on:
  push:
    branches:
      - develop

jobs:
  publish:

    runs-on: ubuntu-latest

    env:
      TELESCOPE_ENABLED: true

    name: Publish assets

    defaults:
      run:
        working-directory: site

    services:
      mysql:
        image: mysql:8.0
        env:
          MYSQL_ALLOW_EMPTY_PASSWORD: yes
          MYSQL_DATABASE: tmc_test
        ports:
          - 3306
        options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3

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

      - name: Cache composer dependencies
        uses: actions/cache@v2
        with:
          path: ~/.composer/cache/files
          key: dependencies-php-8.0-composer-${{ hashFiles('**/composer.lock') }}
          restore-keys: |
            dependencies-php-8.0-composer-

      - name: Setup PHP 8.0
        uses: shivammathur/setup-php@v2
        with:
          php-version: 8.0
          extensions: ctype, curl, date, dom, fileinfo, filter, gd, hash, iconv, intl, json, libxml, mbstring, openssl, pcntl, pcre, pdo, pdo_sqlite, pdo_mysql, phar, posix, simplexml, spl, sqlite, tokenizer, tidy, xml, xmlreader, xmlwriter, zip, zlib
          coverage: none

      - name: Reset MySQL root user authentication method
        run: mysql --host 127.0.0.1 --port ${{ job.services.mysql.ports[3306] }} -uroot -e "alter user 'root'@'%' identified with mysql_native_password by ''"

      - name: Prepare Laravel Application
        run: cp .env.testing .env

      - name: Install PHP dependencies (composer)
        run: |
          composer config "http-basic.nova.laravel.com" "${{ secrets.NOVA_USERNAME }}" "${{ secrets.NOVA_PASSWORD }}"
          composer install --no-interaction

      - name: Run migration and publish
        run: |
          php artisan migrate --force
          composer publish
        env:
          DB_HOST: 127.0.0.1
          DB_PORT: ${{ job.services.mysql.ports[3306] }}

      - uses: stefanzweifel/git-auto-commit-action@v4
        with:
          commit_message: Publish laravel package assets
@stefanzweifel stefanzweifel added the bug Something isn't working label Feb 24, 2022
@stefanzweifel
Copy link
Owner

Thanks for reporting!

It only started erroring recently.

Can you pin-point this to an exact date? The last release (v4.13.1) was on 13th January 2022.
v4.13.0 was released on January 10th, which added a new skip_checkout-option.

I have a workflow that runs on a schedule in a repo that regularly has nothing to commit, and it doesn't break the workflow run. 🤔

The file it says is modified is a built javascript file but is probably only whitespace changes hence nothing to commit […]

Even if there are only whitespace changes, these are changes which should be committed.


From the log and workflow, it seems you're not using any special options the Action exposes besides commit_message.
Did you maybe – by accident – remove some options? (commit_options, status_options, push_options, add_options)

Maybe it's related to the trigger? That is ommited from the workflow file too. As you're using github.head_ref I assume it's on pull_request?

@dmason30
Copy link
Author

Thanks for the reply, updated above with full workflow, it only runs on push to the develop branch and the idea is to run composer publish which runs various commands which may modify files and then commit any changes back to develop.

The workflow itself hasn't changed since September 2021 and that was just to bump the PHP version. I'll see if adding skip_checkout or some of the other options helps in some way.

@dmason30
Copy link
Author

dmason30 commented Feb 24, 2022

I ran the above workflow but changing to use v3 of your action instead and I do not encounter the above error.

Run stefanzweifel/git-auto-commit-action@v3
/usr/bin/docker run --name db2d73ba30ecc82754bdbb2609ffb28a7fd[15](https://github.com/xxx/xxx/runs/5321542307?check_suite_focus=true#step:11:15)_f77e40 --label 7db2d7 --workdir /github/workspace --rm -e TELESCOPE_ENABLED -e COMPOSER_PROCESS_TIMEOUT -e COMPOSER_NO_INTERACTION -e INPUT_COMMIT_MESSAGE -e INPUT_BRANCH -e INPUT_COMMIT_OPTIONS -e INPUT_FILE_PATTERN -e INPUT_REPOSITORY -e INPUT_COMMIT_USER_NAME -e INPUT_COMMIT_USER_EMAIL -e INPUT_COMMIT_AUTHOR -e HOME -e GITHUB_JOB -e GITHUB_REF -e GITHUB_SHA -e GITHUB_REPOSITORY -e GITHUB_REPOSITORY_OWNER -e GITHUB_RUN_ID -e GITHUB_RUN_NUMBER -e GITHUB_RETENTION_DAYS -e GITHUB_RUN_ATTEMPT -e GITHUB_ACTOR -e GITHUB_WORKFLOW -e GITHUB_HEAD_REF -e GITHUB_BASE_REF -e GITHUB_EVENT_NAME -e GITHUB_SERVER_URL -e GITHUB_API_URL -e GITHUB_GRAPHQL_URL -e GITHUB_REF_NAME -e GITHUB_REF_PROTECTED -e GITHUB_REF_TYPE -e GITHUB_WORKSPACE -e GITHUB_ACTION -e GITHUB_EVENT_PATH -e GITHUB_ACTION_REPOSITORY -e GITHUB_ACTION_REF -e GITHUB_PATH -e GITHUB_ENV -e RUNNER_OS -e RUNNER_ARCH -e RUNNER_NAME -e RUNNER_TOOL_CACHE -e RUNNER_TEMP -e RUNNER_WORKSPACE -e ACTIONS_RUNTIME_URL -e ACTIONS_RUNTIME_TOKEN -e ACTIONS_CACHE_URL -e GITHUB_ACTIONS=true -e CI=true --network github_network_2302029a948e46faa76[18](https://github.com/xxx/xxxx/runs/5321542307?check_suite_focus=true#step:11:18)2d4bbdc7b79 -v "/var/run/docker.sock":"/var/run/docker.sock" -v "/home/runner/work/_temp/_github_home":"/github/home" -v "/home/runner/work/_temp/_github_workflow":"/github/workflow" -v "/home/runner/work/_temp/_runner_file_commands":"/github/file_commands" -v "/home/runner/work/xxx/xxx":"/github/workspace" 7db2d7:3ba30ecc82754bdbb2609ffb28a7fd15
INPUT_REPOSITORY value: .
INPUT_BRANCH value: 
M	site/public/vendor/nova-tools/app.js
Your branch is up to date with 'origin/develop'.
INPUT_FILE_PATTERN: .
warning: CRLF will be replaced by LF in site/public/vendor/nova-tools/app.js.
The file will have its original line endings in your working directory
INPUT_COMMIT_OPTIONS: 
On branch develop
Your branch is up to date with 'origin/develop'.

nothing to commit, working tree clean

I then ran on 4.0.0 and the error occurs as described in the original post so I guess its some difference between the docker and node environments.

I will just stick with v4 and add continue-on-error: true for now to the step and keep an eye on it to make sure it does commit when there are changes.

@stefanzweifel
Copy link
Owner

Thanks for the update.
Maybe this is related to the working-directory-setting.

    defaults:
      run:
        working-directory: site

But it's weird that the Action finds changes, commits them but in the end can't seem to push it.
The message "nothing to commit, working tree clean" also differs slightly from the default "nothing-happend" message from the Action ("Working tree clean. Nothing to commit.").

Even if the Action can't push the commit to remote, it should at least have been echoing INPUT_PUSH_OPTIONS, but it didn't.


I'm closing this issue for now, as I can't seem to find a way to reproduce this. Feel free to reopen if the issue persits on your end.

@emepetres
Copy link

Hi @stefanzweifel, I've been able to reproduce it with different versions of v4 (I've tested with v4.11.0, v4.14.1 and v4).

I've notice that both original issue and mine have in common the LF warning:
warning: LF will be replaced by CRLF in ....

Could be related with it?

- name: Commit if update
  uses: stefanzweifel/git-auto-commit-action@v4.14.1
  with:
    commit_message: Updating Imgui version
    add_options: "-u"
nothing to commit, working tree clean
Error: Invalid status code: 1
    at ChildProcess.<anonymous> (D:\a\_actions\stefanzweifel\git-auto-commit-action\v4.14.1\index.js:17:19)
    at ChildProcess.emit (events.js:314:20)
    at maybeClose (internal/child_process.js:1022:16)
    at Process.ChildProcess._handle.onexit (internal/child_process.js:287:5) {
  code: 1
}
Error: Invalid status code: 1
    at ChildProcess.<anonymous> (D:\a\_actions\stefanzweifel\git-auto-commit-action\v4.14.1\index.js:17:19)
    at ChildProcess.emit (events.js:314:20)
    at maybeClose (internal/child_process.js:1022:16)
    at Process.ChildProcess._handle.onexit (internal/child_process.js:287:5)

Full source to reproduce it and logs: https://github.com/EvergineTeam/ImGui.Net/runs/6866268664?check_suite_focus=true

@stefanzweifel
Copy link
Owner

Hey @emepetres, the Action currently doesn't support to be run on windows-latest unfortunately:

Note that the Action has to be used in a Job that runs on a UNIX system (eg. ubuntu-latest). If you don't use the default permission of the GITHUB_TOKEN, give the Job or Workflow at least the contents: write permission.

As mentioned in this comment, I haven't touched a Windows machine in years. This makes debugging hard.
I see you're a .NET-shop and therefore rely on Windows … so this is a bummer of course.

Another user mentioned that he even has issues running the Action on Ubuntu (#177 (comment)) which I can't reproduce.

If you have any insights that could make this Action compatible with Windows let me now!
Will try to install a Windows VM on my machine in the next few weeks. Maybe I can find a solution.

@Grldk
Copy link

Grldk commented Sep 5, 2022

@stefanzweifel I think I'm running into this bug too. Although my process is slightly different.

I'm using this action to force commit some css/js assets that are in .gitignore, as a way to manage compiled assets and reduce merge conflicts. This works fine when there are changes in the compiled assets, but fails when there are no changes, similar to other failures in this issue.

I've reproduced this in this repo: https://github.com/Grldk/LaravelTest

As you can see, the first action runs fine because there are actual changes, second actions with an empty commit fails with:

Started: bash /home/runner/work/_actions/stefanzweifel/git-auto-commit-action/v4/entrypoint.sh
INPUT_REPOSITORY value: .
INPUT_STATUS_OPTIONS: 
INPUT_BRANCH value: 
Your branch is up to date with 'origin/master'.
INPUT_ADD_OPTIONS: -f
INPUT_FILE_PATTERN: public/css/*.css public/js/*.js public/mix-manifest.json
INPUT_COMMIT_OPTIONS: 
INPUT_COMMIT_USER_NAME: github-actions[bot]
INPUT_COMMIT_USER_EMAIL: github-actions[bot]@users.noreply.github.com
INPUT_COMMIT_MESSAGE: Compile Assets
INPUT_COMMIT_AUTHOR: Grldk <Grldk@users.noreply.github.com>
On branch master
Your branch is up to date with 'origin/master'.

nothing to commit, working tree clean
Error: Invalid status code: 1
    at ChildProcess.<anonymous> (/home/runner/work/_actions/stefanzweifel/git-auto-commit-action/v4/index.js:17:19)
    at ChildProcess.emit (events.js:314:20)
    at maybeClose (internal/child_process.js:1022:16)
    at Process.ChildProcess._handle.onexit (internal/child_process.js:287:5) {
  code: 1
}
Error: Invalid status code: 1
    at ChildProcess.<anonymous> (/home/runner/work/_actions/stefanzweifel/git-auto-commit-action/v4/index.js:17:19)
    at ChildProcess.emit (events.js:314:20)
    at maybeClose (internal/child_process.js:1022:16)
    at Process.ChildProcess._handle.onexit (internal/child_process.js:287:5)

@stefanzweifel
Copy link
Owner

@Grldk Maybe a silly question, but why are you adding these files to .gitignore just to then force add them in CI? Did you run into so many merge conflicts before? Does this reliably work on your local machine?
Did you try this workflow without setting add_options: '-f' and skip_dirty_check : true?

My gut tells me, that this might be related to the findings from here: #227 (comment)

The Action breaks on this line when creating the commit:

git -c user.name="$INPUT_COMMIT_USER_NAME" -c user.email="$INPUT_COMMIT_USER_EMAIL" \
commit -m "$INPUT_COMMIT_MESSAGE" \
--author="$INPUT_COMMIT_AUTHOR" \
${INPUT_COMMIT_OPTIONS:+"${INPUT_COMMIT_OPTIONS_ARRAY[@]}"};
. Maybe you would also have to add a commit option to make this work?

@Grldk
Copy link

Grldk commented Sep 6, 2022

@stefanzweifel Yeah I know it's probably not the cleanest approach, but it does work. Alternative would be to leave compiled assets out completely, and compile them while deploying, but that's not an option for now unfortunately. The merge conflicts did get very annoying.

Without add_options: '-f' and skip_dirty_check : true this workflow does not work. Without those options git will not pick up changes in the compiled assets, because they are in .gitignore...

But thanks for pointing me in the right direction (feel kinda stupid that I missed this myself), it does work when adding the --allow-empty commit option!

@stefanzweifel
Copy link
Owner

@Grldk Great that it works now! Will definitely add your case to our test suite. Always great to have "real-world"-scenarios covered by tests.

@Grldk
Copy link

Grldk commented Sep 6, 2022

This does mean that I end up with empty commits in case nothing has changed, which is not the most ideal situation I guess, but that's more a problem of my specific workflow than within the scope of this action probably

@stefanzweifel
Copy link
Owner

@Grldk I could reproduce your error in a test case: 4e7c0d6

The message nothing to commit, working tree clean comes from git-commit. There's no neat try/catch functionality in Bash to catch this error. What we could do is, add || true to the git-commit command.

Our code would look like this:

git commit -m "$INPUT_COMMIT_MESSAGE" || "$INPUT_SKIP_DIRTY_CHECK";

($INPUT_SKIP_DIRTY_CHECK contains the skip_dirty_check value).

But this fails the "If SKIP_DIRTY_CHECK is set to true on a clean repo it fails to push"-test.
What you experience is basically "expected behaviour".

Letting the skip_dirty_check-option dictating this behaviour is probably a bad idea in the long run.
Maybe a new no_failure_on_clean_repo option (or something better named) would be a good fit here. (But I'm also torn as I generally don't want to add more options to this Action).

In my mind, letting the Action fail if nothing can be committed if someone explicitly disables the dirty check is also okay. But you seem to have a very unique workflow that just doesn't fit into this Action. 🤔

@Grldk
Copy link

Grldk commented Sep 7, 2022

@stefanzweifel

But you seem to have a very unique workflow that just doesn't fit into this Action.

That's ok, like I said, it's probably out of your scope. I'd like to move away from this workflow in the long term anyway. Thanks for your time!

ccomendant pushed a commit to vastlimits/uberAgent-config that referenced this issue Apr 11, 2024
commit fe1c228e1302ce65e5640a26a511c1408fa5e0be
Author: Constantin Comendant <constantin@uberagent.com>
Date:   Thu Apr 11 14:53:29 2024 +0200

    remove changelog

commit b0f4d47f590e46dfe55fea81b3b068cb0aab8678
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Tue Mar 26 08:29:07 2024 +0100

    Bump bats from 1.10.0 to 1.11.0 (#325)

    Bumps [bats](https://github.com/bats-core/bats-core) from 1.10.0 to 1.11.0.
    - [Release notes](https://github.com/bats-core/bats-core/releases)
    - [Changelog](https://github.com/bats-core/bats-core/blob/master/docs/CHANGELOG.md)
    - [Commits](https://github.com/bats-core/bats-core/compare/v1.10.0...v1.11.0)

    ---
    updated-dependencies:
    - dependency-name: bats
      dependency-type: direct:development
      update-type: version-update:semver-minor
    ...

    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 9b5e5ee10a5c7b2e05d5f25da265a1c73b24e6a6
Author: Christian Vermeulen <christian.vermeulen@gmail.com>
Date:   Fri Mar 15 16:06:58 2024 +0100

    Add step id explanation for output in README.md (#324)

commit e040c596f0a65570b339c60818081175bcf82d11
Author: Philip Couling <couling@gmail.com>
Date:   Thu Feb 22 07:26:06 2024 +0000

    Linux is not UNIX (#321)

commit 4d160c5e4d67c62e67f03ae49aa38359e964139a
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Tue Feb 6 07:16:57 2024 +0100

    Bump release-drafter/release-drafter from 5 to 6 (#319)

commit 12f68633e45c72459cd040c868605f2471c7f63b
Author: Nikita Panuhin <n.panuhin@mail.ru>
Date:   Sun Dec 24 07:35:30 2023 +0100

    Clarify `commit_author` input option (#315)

    * Clarify `commit_author` input option

    * Update README.md

    ---------

    Co-authored-by: Stefan Zweifel <stefanzweifel@users.noreply.github.com>

commit 29183a25ec7450c8f6fbab7ff22ccd42d8ab7416
Author: Stefan Zweifel <stefan@stefanzweifel.dev>
Date:   Tue Dec 12 20:45:33 2023 +0100

    Remove outdated docs

commit 2818fe7949d2daf9e2b5d7d808ca2ca11ccf70ad
Author: Stefan Zweifel <stefan@stefanzweifel.dev>
Date:   Tue Dec 12 20:42:25 2023 +0100

    Add Alert about pull_request_target

    https://github.com/stefanzweifel/git-auto-commit-action/issues/211#issuecomment-1837270114

commit 8d90676eefd6ee2df2214033002d76f2ce6b6989
Author: Stefan Zweifel <stefan@stefanzweifel.dev>
Date:   Tue Dec 12 20:38:26 2023 +0100

    Little Doc Updates

commit 8036286d3751929c947d18324a45433db4ff357f
Author: Stefan Zweifel <stefan@stefanzweifel.dev>
Date:   Tue Dec 12 20:38:06 2023 +0100

    Use new Markdown Alerts in README

commit e8f94e4dd298db5a6a2aa2d42fe0bcef6f2c9660
Merge: 98d2782 e27a689
Author: Stefan Zweifel <stefan@stefanzweifel.dev>
Date:   Fri Oct 6 19:56:36 2023 +0200

    Merge branch 'master' of github.com:stefanzweifel/git-auto-commit-action

commit 98d2782f49833831d777f51f3ada1d7ac3073f7d
Author: Stefan Zweifel <stefan@stefanzweifel.dev>
Date:   Fri Oct 6 19:56:33 2023 +0200

    Use v5 in README

commit eb38c210f2fc7b4533fe335ac7c74cbe8715ee5e
Author: Stefan Zweifel <stefan@stefanzweifel.dev>
Date:   Fri Oct 6 19:56:27 2023 +0200

    Use v5 in update-changelog Workflow

commit e27a68931bfdedc02d161959134e07e91ffaafeb
Author: stefanzweifel <stefanzweifel@users.noreply.github.com>
Date:   Fri Oct 6 17:55:19 2023 +0000

    Update CHANGELOG

commit 8756aa072ef5b4a080af5dc8fef36c5d586e521d
Author: 高井 <56185180+ryudaitakai@users.noreply.github.com>
Date:   Sat Oct 7 02:43:01 2023 +0900

    Update node version to node20 (#300)

    Co-authored-by: ryudai.takai

commit 17a44b07bfb39df9b154951c8319a83ab0eb61bf
Merge: 43818d5 1094465
Author: Stefan Zweifel <stefan@stefanzweifel.dev>
Date:   Fri Oct 6 19:31:58 2023 +0200

    Merge branch 'master' of github.com:stefanzweifel/git-auto-commit-action

commit 43818d504497ae1cf89266ac8e6b88253fd828b3
Author: Stefan Zweifel <stefan@stefanzweifel.dev>
Date:   Fri Oct 6 19:30:48 2023 +0200

    Fix Typo

commit 10944650cd54362ae9200814cbb06c657132951d
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Wed Oct 4 15:33:04 2023 +0200

    Use actions/checkout v4 in examples

    https://github.com/stefanzweifel/git-auto-commit-action/pull/302#issuecomment-1745974288

commit 3d1b5e078a85df99db0cb2441cd4309b09d86253
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Sep 11 10:32:33 2023 +0200

    Bump actions/checkout from 3 to 4 (#302)

    Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
    - [Release notes](https://github.com/actions/checkout/releases)
    - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/actions/checkout/compare/v3...v4)

    ---
    updated-dependencies:
    - dependency-name: actions/checkout
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...

    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 47a8ad5f38721f4b62f84ddd01aba6b281956891
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Jul 17 09:56:06 2023 +0200

    Bump bats from 1.9.0 to 1.10.0 (#293)

    Bumps [bats](https://github.com/bats-core/bats-core) from 1.9.0 to 1.10.0.
    - [Release notes](https://github.com/bats-core/bats-core/releases)
    - [Changelog](https://github.com/bats-core/bats-core/blob/master/docs/CHANGELOG.md)
    - [Commits](https://github.com/bats-core/bats-core/compare/v1.9.0...v1.10.0)

    ---
    updated-dependencies:
    - dependency-name: bats
      dependency-type: direct:development
      update-type: version-update:semver-minor
    ...

    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 77a7b3fb3cefad3856cb5086bfb157ac1c32b008
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Fri Jun 23 09:20:59 2023 +0200

    Bump github/super-linter from 4 to 5 (#289)

    Bumps [github/super-linter](https://github.com/github/super-linter) from 4 to 5.
    - [Release notes](https://github.com/github/super-linter/releases)
    - [Changelog](https://github.com/github/super-linter/blob/main/docs/release-process.md)
    - [Commits](https://github.com/github/super-linter/compare/v4...v5)

    ---
    updated-dependencies:
    - dependency-name: github/super-linter
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...

    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 9cc0a1f55de2aa04a36721ca84463dd520f70f4c
Author: Pedro Amador Rodríguez <pedroamador.rodriguez@gmail.com>
Date:   Mon Apr 3 08:55:34 2023 +0200

    Seems like there is an extra space (#288)

commit 0b5f8a533380e17b84a027ed83497bd5cfe3dfb2
Author: Stefan Zweifel <stefan@stefanzweifel.dev>
Date:   Tue Mar 28 14:46:47 2023 +0200

    Update Test

commit 3a446b74f0b1655361b260fb3c56299d77e635d3
Merge: 8e108d7 c8254de
Author: Stefan Zweifel <stefan@stefanzweifel.dev>
Date:   Wed Feb 15 19:45:07 2023 +0100

    Merge branch 'master' of github.com:stefanzweifel/git-auto-commit-action

commit 8e108d701f702a9bfdff0350ee483743ca56b021
Author: Stefan Zweifel <stefan@stefanzweifel.dev>
Date:   Wed Feb 15 19:44:45 2023 +0100

    Fix docs about using in public forks

    Update docs section about using the Action in public forks.

    Add warning about current issue when the forks lives under an organisation.

    Mark section about running a workflow in the head repository as outdated, as I was not able to reproduce this in test projects.

    See https://github.com/stefanzweifel/git-auto-commit-action/issues/211#issuecomment-1428849944 for more details.

commit c8254de74fb2d4577fe54a38cde3186515e9931c
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Feb 13 08:22:21 2023 +0100

    Bump bats from 1.8.2 to 1.9.0 (#282)

    Bumps [bats](https://github.com/bats-core/bats-core) from 1.8.2 to 1.9.0.
    - [Release notes](https://github.com/bats-core/bats-core/releases)
    - [Changelog](https://github.com/bats-core/bats-core/blob/master/docs/CHANGELOG.md)
    - [Commits](https://github.com/bats-core/bats-core/compare/v1.8.2...v1.9.0)

    ---
    updated-dependencies:
    - dependency-name: bats
      dependency-type: direct:development
      update-type: version-update:semver-minor
    ...

    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 6436584fbbde9ffb372220e0dd9e42e96e6b03d8
Author: Stefan Zweifel <stefan@stefanzweifel.dev>
Date:   Sat Feb 11 21:31:27 2023 +0100

    Fix Comment in README

commit 6656e542550b41d845d8d4844044eb181cb6fc6a
Author: Stefan Zweifel <stefan@stefanzweifel.dev>
Date:   Sat Feb 11 21:29:21 2023 +0100

    Use actions/checkout@v3 in examples

commit f0b35f0a731335dde1eadd3dc0c9eefb4c45054f
Author: Stefan Zweifel <stefan@stefanzweifel.dev>
Date:   Sat Feb 11 21:29:07 2023 +0100

    Mention new permission requirements in usage docs

    Starting February 2nd 2023, GitHub changed the default permissions of the GITHUB_TOKEN to be read-only in all new repositories.[1]

    git-auto-commits needs `write`-permissions for the `contents`-key in order to work properly.
    This commits updates the usage section, to mention the need for the permission requirements. The examples have also been updated to reflect that change.

    [1]: https://github.blog/changelog/2023-02-02-github-actions-updating-the-default-github_token-permissions-to-read-only/

commit ccd4d054a57846a7f1c0199df66e8fb8a15d6872
Author: Stefan Zweifel <stefan@stefanzweifel.dev>
Date:   Sat Feb 11 21:14:56 2023 +0100

    Fix Typo in Workflow comments

commit 94d6bf9d2205442189681a51f429ab9143657007
Author: Stefan Zweifel <stefan@stefanzweifel.dev>
Date:   Sat Feb 11 12:23:24 2023 +0100

    Add permissions block to Workflows

commit f44d1cd002fb4a460e5de6f1e79156286dc09d73
Merge: 92b3981 3b94e3d
Author: Stefan Zweifel <stefan@stefanzweifel.dev>
Date:   Wed Jan 25 19:58:10 2023 +0100

    Merge branch 'master' of github.com:stefanzweifel/git-auto-commit-action

commit 92b3981e0b7e212ae8de76e5c0ebbae9213d1db8
Author: Stefan Zweifel <stefan@stefanzweifel.dev>
Date:   Wed Jan 25 19:57:43 2023 +0100

    Update Author Email Address

commit 3b94e3d0179a57791345521ad5d33f91396a25f6
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Fri Jan 20 15:31:53 2023 +0100

    Update README.md

    Closes #281

commit 3663a6fa3ebeb37c44d95a85b93c3d3cc7083b69
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Sat Jan 14 18:05:16 2023 +0100

    Update README.md

commit fe00d258677e45d1f05473557e57bdfe865370fc
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sat Jan 7 12:06:10 2023 +0100

    Add test for multi-line commit messages

commit 86fb2e11b29e925e8f69e11ea53599e56383379e
Author: cong <zhangcong1992@gmail.com>
Date:   Tue Jan 3 15:17:32 2023 +0800

    Fix git-auto-commit.yml (#277)

commit aeb1802648f7edfed48c9a530eea1a74d58dc2f4
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Thu Dec 22 19:45:17 2022 +0100

    Add _log and _set_github_output functions (#273)

    * Add _set_github_output function

    * Use _set_github_output in Action

    * Add _log function

    * Use _log in Action and fix Test Cases

    * Update wording in log messages

    * Update note about removal of old output syntax

    Logic is now encapuslated in a single function. I don’t mind keeping it around until spring / June 2023

commit 925bbcaef30b3bb8918437735cff69dffcc3de4a
Author: stefanzweifel <stefanzweifel@users.noreply.github.com>
Date:   Fri Dec 2 06:50:39 2022 +0000

    Update CHANGELOG

commit 3ea6ae190baf489ba007f7c92608f33ce20ef04a
Author: ZeroRin <pptxp@qq.com>
Date:   Fri Dec 2 03:47:06 2022 +0800

    Fix "nothing to commit" error with LF/CRLF changes #241 (#265)

    * fix crlf test

    * add diff check before commit

    * add dirty check flag (not sure if needed)

    * Update test name and add more assertions

    Update test name to make it clear that the Action no longer fails to detect CRLF changes.

    * Add Comment to explain why we use git-diff again

    * Add test to confirm content changes are commited

    * Closes #241

    Co-authored-by: Stefan Zweifel <hello@stefanzweifel.io>

commit 976f22029fe5ee84057c18c4807b8c727952a393
Author: Teko <112829523+Teko012@users.noreply.github.com>
Date:   Tue Nov 15 20:12:31 2022 +0100

    Fix github-actions[bot] email address (#264)

commit ebb57560423c39cbe37e0620f5653ed953658014
Author: Teko <112829523+Teko012@users.noreply.github.com>
Date:   Sun Nov 13 10:06:41 2022 +0100

    Fix link and text for workflow limitation (#263)

commit 3dce995a134560077670102252dbfc19025f8af6
Author: stefanzweifel <stefanzweifel@users.noreply.github.com>
Date:   Sat Nov 5 10:56:08 2022 +0000

    Update CHANGELOG

commit 0b007fbd1180b8e3a3668b21c6517392fe8f26eb
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Sat Nov 5 11:53:46 2022 +0100

    Let Action fail if git binary can't be located (#261)

    * Check if git binary exists

    * Add Tests

commit 7106b2184ab582ac5e5bc2099c8b6b195b81d706
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Wed Oct 26 19:05:48 2022 +0200

    Bump github/super-linter from 3 to 4 (#258)

    Bumps [github/super-linter](https://github.com/github/super-linter) from 3 to 4.
    - [Release notes](https://github.com/github/super-linter/releases)
    - [Changelog](https://github.com/github/super-linter/blob/main/docs/release-process.md)
    - [Commits](https://github.com/github/super-linter/compare/v3...v4)

    ---
    updated-dependencies:
    - dependency-name: github/super-linter
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...

    Signed-off-by: dependabot[bot] <support@github.com>

    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit f16613020889d152b7e58a4fb8be93614e9e8825
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Wed Oct 26 19:04:33 2022 +0200

    Bump bats from 1.7.0 to 1.8.2 (#259)

    Bumps [bats](https://github.com/bats-core/bats-core) from 1.7.0 to 1.8.2.
    - [Release notes](https://github.com/bats-core/bats-core/releases)
    - [Changelog](https://github.com/bats-core/bats-core/blob/master/docs/CHANGELOG.md)
    - [Commits](https://github.com/bats-core/bats-core/compare/v1.7.0...v1.8.2)

    ---
    updated-dependencies:
    - dependency-name: bats
      dependency-type: direct:development
      update-type: version-update:semver-minor
    ...

    Signed-off-by: dependabot[bot] <support@github.com>

    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 021a6363fa4b642fd389ad43257c695985831f3a
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Wed Oct 26 19:03:57 2022 +0200

    Bump actions/checkout from 2 to 3 (#257)

    Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.
    - [Release notes](https://github.com/actions/checkout/releases)
    - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
    - [Commits](https://github.com/actions/checkout/compare/v2...v3)

    ---
    updated-dependencies:
    - dependency-name: actions/checkout
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...

    Signed-off-by: dependabot[bot] <support@github.com>

    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 38864a638f5566c1499a79a33f1eead7a49770cb
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Wed Oct 26 19:02:41 2022 +0200

    Create dependabot.yml

commit 393fea59ef5a2abd01392e79a8270682226ddf04
Author: stefanzweifel <stefanzweifel@users.noreply.github.com>
Date:   Wed Oct 26 16:57:18 2022 +0000

    Update CHANGELOG

commit 0049e3fa4059ca715255fbbcb7dea4516f02ce0a
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Wed Oct 26 18:55:42 2022 +0200

    Use deprecated set-output syntax if GITHUB_OUTPUT environment is not available (#255)

    * Fallback to set-output if GITHUB_OUTPUT not available

    * Add Tests to cover old syntax

commit f6f7a9c351bb990cab0093f66c0d443d3a108a6f
Author: stefanzweifel <stefanzweifel@users.noreply.github.com>
Date:   Sat Oct 22 09:19:59 2022 +0000

    Update CHANGELOG

commit 2fde6fc18d3b24c2561ba4b73a8e015e863cef85
Author: Andrew Monshizadeh <1282845+amonshiz@users.noreply.github.com>
Date:   Sat Oct 22 04:42:11 2022 -0400

    Replace set-output usage with GITHUB_OUTPUT (#252)

    * GitHub has deprecated set-output and now needs to add the content to the GITHUB_OUTPUT file

    * Update tests too

    * Fix tests and shell-format changes

    * Revert yarn.lock changes

commit faf78595b8c88c192ddde9ca210e19c20705f284
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Fri Oct 21 09:28:08 2022 +0200

    Update README.md

commit a0873a0795991933fedcac591b8736fa2c13d183
Author: stefanzweifel <stefanzweifel@users.noreply.github.com>
Date:   Mon Oct 10 17:17:41 2022 +0000

    Update CHANGELOG

commit fd157da78fa13d9383e5580d1fd1184d89554b51
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Mon Oct 10 19:15:24 2022 +0200

    Run Action on Node16 (#247)

    closes #246

commit b208f78c106ef46799e92c989427512a5259f056
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Wed Sep 28 20:19:50 2022 +0200

    Test that CRLF changes are not picked up

    This PR adds a test to confirm, that changes to CRLF are not properly detected and that the message "Working tree clean. Nothing to commit." is displayed.

    Setting `core.autocrlf` to `true` also has no effect here.

    refs #241

commit cef08f291876f5a1cce3ccadba2658810c7105b8
Author: stefanzweifel <stefanzweifel@users.noreply.github.com>
Date:   Sat Sep 24 08:53:51 2022 +0000

    Update CHANGELOG

commit 6c32682a4040e023c054b2fc60a7cf65cc77f7ad
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sat Sep 17 16:37:41 2022 +0200

    Add bug label to new issues

commit a4a482b6c5c4ddd79f093f0f516a1c9a10669a8a
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sat Sep 17 16:35:49 2022 +0200

    Update Issue Templates

commit 18870f2286c2860e1e6c802fe8f7d5f382b903d7
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sat Sep 17 16:02:44 2022 +0200

    Add note about line break detection

commit 52eb0eedc8e2bf33895ad736b09ad81083847739
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sat Sep 17 15:34:02 2022 +0200

    Update README

commit 03246c1ceed0c91e9b14bf5a366ba777eb931d5e
Author: Karol <50302144+karolswdev@users.noreply.github.com>
Date:   Sat Sep 17 07:33:25 2022 -0600

    Changed the extended example to correctly use quotes for strings (#196)

    Co-authored-by: Stefan Zweifel <stefanzweifel@users.noreply.github.com>

commit 4d00f10668b767d99f539489062c0e3dd052c645
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Sat Sep 17 15:18:36 2022 +0200

    Expand `file_pattern`-input to an array (#205)

    * Expand file_pattern input

    * Expand file pattern array in git-status

    * Add Failing Test

    * Expand INPUT_FILE_PATTERN

    * Fix Shellcheck Issues

    * Add test to cover file expansion works when globbing is disabled

    * Add explanation to README

commit 4e7c0d67cd27ac96adcf4d3e06db1070c1a3c4f0
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Tue Sep 6 21:04:34 2022 +0200

    Assert throws error when force adding ignored files

    See https://github.com/stefanzweifel/git-auto-commit-action/issues/204#issuecomment-1236880360

commit dce7e85096193516db2ae686bd562faf5bc7f4ea
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sat Jul 30 20:21:57 2022 +0200

    Add Tests to Cover #233

commit 926240570901a8a0cbb6fb2ec40f26e35d5644fe
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sat Jul 30 20:14:41 2022 +0200

    Fix Typo in Test

commit 32807d4f18f1f004ed74e14e047fecfe5204874b
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sat Jul 30 20:14:29 2022 +0200

    Upgrade Bats

commit f5b5fefa06a5c27d8b29ab2f0f31c0ce1a5b9d59
Author: Derrick Lee <derrickleemy@gmail.com>
Date:   Wed Jul 27 14:23:35 2022 +0800

    docs: fix typos and grammer errors in readme.md (#235)

commit f33e764001cd92cef6fcdd2d494661df3d143a75
Author: Marco <github@marco.lecheler.com>
Date:   Mon Jul 11 15:25:38 2022 +0200

    fix typo in readme (#230)

    remote was misspelled

commit f0d72a04e7eb2216f50ae6c9089b42165b342737
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Wed Jun 29 20:24:50 2022 +0200

    Add note about pathspec error

commit 571d6b78ed2213bc3630491d4cfffb7fe3f152bb
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Tue Jun 28 20:08:10 2022 +0200

    Add test to verify issue #227

    This test confirms the problem mentioned in #227.

    If `file_pattern` contains a pattern of, for example 2 file extensions, and only files for one extensions are dirty but not for the otherone, `git-add` will throw a fatal error.

    It does not throw an error if the files for the pattern already exist but are not dirty.

commit f990bd0ed13ca1e41d474ae0bff84ea053b3bd65
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Mon Jun 27 20:56:36 2022 +0200

    Add Note about .gitignore

commit 789f58e41a0d5e3af8438b58272ab02db9438f80
Author: Eric Cornelissen <ericornelissen@gmail.com>
Date:   Mon Jun 6 07:36:31 2022 +0200

    Add missing links in the CHANGELOG (#223)

    * Update CHANGELOG

    Add missing references to Pull Requests.

    * Link to PRs and Authors in upcoming release notes

    Co-authored-by: Stefan Zweifel <hello@stefanzweifel.io>

commit 79ae6eea9571e6564ff5bc076266872207a5bdac
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Fri Apr 15 20:06:11 2022 +0200

    Update README concerning pull_request_target  trigger

    Closes #211

commit 488db3d5039c2879d03cb74567b8215a01208a9e
Author: stefanzweifel <stefanzweifel@users.noreply.github.com>
Date:   Tue Apr 12 18:43:36 2022 +0000

    Update CHANGELOG

commit 49620cd3ed21ee620a48530e81dba0d139c9cb80
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Tue Apr 12 20:33:36 2022 +0200

    Update README.md

commit 73f17337ef94eb9524dd420ff11a97846ff3acb0
Author: Jonas L <jooola@users.noreply.github.com>
Date:   Tue Apr 12 20:30:34 2022 +0200

    Use github-actions[bot] user as commit user (#213)

    Fixes #212

commit 30fd9f94bcc75ff514e7bd26fd3c6f5b3ab70aa9
Author: Geoff <geoff@gapple.ca>
Date:   Wed Mar 23 00:14:36 2022 -0700

    Update README.md (#206)

commit d0487b9fa3a792b5e90562c27541eedecc2548b4
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Sat Mar 19 07:46:33 2022 +0100

    Update README.md

commit 2719df73cd9f53ea26cbca737ba758532fda3ab8
Author: stefanzweifel <stefanzweifel@users.noreply.github.com>
Date:   Fri Mar 18 19:29:58 2022 +0000

    Update CHANGELOG

commit c4b132ec2c77a21fcab564bd3c92610cee84b894
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sun Feb 27 12:10:20 2022 +0100

    Update file_pattern related test

commit 19c7b84a3c3a6c94aa7aa94141d1217c79b1ccd6
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sun Feb 27 11:18:39 2022 +0100

    Update README

commit ebe77391c67c5fa6314697c01af103e3722b917c
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Sun Feb 27 07:52:17 2022 +0100

    Add `create_branch` option to force create a new branch (#203)

    * Add create_branch option

    * Checkout new branch if create_branch input is true

    * Add tests

    * Update README

commit dee58f4213fa2ce05f8b11b983fca79b01ab0b80
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Tue Feb 22 20:02:04 2022 +0100

    Remove nbsp from entrypoint.sh

commit 248fbacc3ea5152797eaa9fa53f6a76a7fe3ba1e
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Mon Jan 24 16:51:53 2022 +0100

    Add note about scopes for PAT

commit 2d5591a740baca41b088dce815ab41a503564558
Merge: 8f67368 22695fb
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Mon Jan 24 16:31:37 2022 +0100

    Merge pull request #200 from funkyfuture/patch-1

commit 22695fb19ef63e0c278f7e50beddd9a8d91a9abb
Author: Frank Sachsenheim <funkyfuture@users.noreply.github.com>
Date:   Mon Jan 24 15:55:20 2022 +0100

    README.md: Updates hyperlink to GH docs

commit 8f6736864a0865fb29f1b3147a41f59cfa7ca670
Author: stefanzweifel <stefanzweifel@users.noreply.github.com>
Date:   Thu Jan 13 18:17:02 2022 +0000

    Update CHANGELOG

commit 5804e42f86b1891093b151b6c4e78e759c746c4d
Merge: b244c38 e3cb9ba
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Wed Jan 12 21:08:17 2022 +0100

    Merge pull request #199 from kenodegard/disambiguate

    Properly disambiguate between branch or file checkout

commit e3cb9ba079224bed2a8cd6aab37bffc62e4b0c7b
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Wed Jan 12 21:05:06 2022 +0100

    Add Test Case

commit af4930911628533bc669ef1ac181e4ff1ab96ece
Author: Ken Odegard <kodegard@anaconda.com>
Date:   Tue Jan 11 10:21:56 2022 -0600

    Properly disambiguate between branch or file checkout

commit b244c3829309c04c2210a52681c50f25b183b2d5
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Mon Jan 10 20:28:24 2022 +0100

    Update CHANGELOG.md

commit c463ede7c351b825b604097cfd6173a39381babb
Author: stefanzweifel <stefanzweifel@users.noreply.github.com>
Date:   Mon Jan 10 19:27:51 2022 +0000

    Update CHANGELOG

commit 8040434425060bbf273c9bc1e108e8e61f4a1116
Merge: 8c3ed37 fc174e2
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Mon Jan 10 20:11:32 2022 +0100

    Merge pull request #197 from cmbuckley/skip-checkout

    Add `skip_checkout` option

commit fc174e240685ba61fdc7422f02ea5edea2171e6a
Author: Chris Buckley <chris@cmbuckley.co.uk>
Date:   Mon Jan 10 00:10:05 2022 +0000

    Add skip_checkout option

commit 8c3ed373fb7e451dbb9706bf99ad63124e33f614
Merge: 0d6c97e 797544d
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Mon Oct 4 08:19:11 2021 +0200

    Merge pull request #180 from ericcornelissen/docs/permissions

    Add note on minimum permissions to the docs

commit 797544dbd20b7f63f3001c4df0dcc760a2a97694
Author: Eric Cornelissen <ericornelissen@gmail.com>
Date:   Sun Oct 3 22:18:07 2021 +0200

    Update README.md

    Add note on minimum required permission.

commit 0d6c97e470c02645b0ac6cc5de2385a0acd53ac6
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sun Sep 26 11:39:31 2021 +0200

    Update README.md

commit f6048aa2acaebea86483c05cd872213addabc819
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sat Sep 25 16:06:43 2021 +0200

    Add Test to Cover #177

    refs #177

commit 983386a33709cac83da9252898d394f0d025c1e0
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Fri Sep 10 19:54:41 2021 +0200

    Add update-changelog Workflow

commit b8ff4cd7165d5b2c94e4eafd866d81ddbcacff32
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Fri Sep 10 19:53:48 2021 +0200

    Add release-drafter Workflow

commit abd87b7d94702070bef78dc1d56b6928b8fa9ecc
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Fri Sep 10 19:47:39 2021 +0200

    Release v4.12.0

commit 54cc2186d1dfc982f685eda689905cb4c8f71110
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Fri Sep 10 19:47:01 2021 +0200

    Remove unwanted chars from tests

commit 216b25a401f18cb5df6add1d76a468b666b36c2c
Merge: 0426839 05aea7e
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Fri Sep 10 19:41:23 2021 +0200

    Merge pull request #172 from webignition/issue-171

    Output hash of created commit

commit 05aea7e2d9a804538da79021a1ce8ec5e418d496
Author: Jon Cram <webignition@gmail.com>
Date:   Fri Sep 10 11:50:18 2021 +0100

    Add commit_hash output description to readme

commit 68fd92dd9c278e9934c67936d83468b8811691a5
Author: Jon Cram <webignition@gmail.com>
Date:   Fri Sep 10 11:39:35 2021 +0100

    Output hash of created commit

commit 042683971872d4210c127a7dc6ff309963b27fff
Merge: e107e28 97badfa
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Fri Sep 10 15:32:18 2021 +0200

    Merge pull request #173 from webignition/run-checks-on-pull-request

    Run git-auto-commit, linter and tests checks on pull requests

commit 97badfaf41f7d0f25ae83a132d1787d3b7aee06f
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Fri Sep 10 15:31:37 2021 +0200

    Revert Linter to only run on push event

commit 10257e2994f62bb94764feacfb25e28c4bc613d9
Author: Jon Cram <webignition@gmail.com>
Date:   Fri Sep 10 13:46:57 2021 +0100

    Run git-auto-commit, linter and tests checks on pull requests

commit e107e28c4ef43209d05b216cf28ceb60361205a5
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Thu Aug 19 08:37:15 2021 +0200

    Update README.md

commit 6834afe23973e469c9b8eddeee1d67ea8a9a4e8a
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Wed Aug 18 20:49:52 2021 +0200

    Update README.md

commit 27ac2f0a7b5059dc4d2c374a7affa25e02069113
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Wed Aug 18 20:43:30 2021 +0200

    Update README

commit 3568db7bbcf2f869cbd3409043c0768bc912a341
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Tue Jul 13 20:18:17 2021 +0200

    Add note about bash dependency

commit 053f35677462851d5d2eec5a9f6f052698c81d92
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sat May 22 11:34:55 2021 +0200

    Improve amend section in README

    refs #159

commit 46af2f08b3e8b571648c280715293d678143cb02
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Thu May 20 20:30:05 2021 +0200

    Add Example for —amend to README

    refs #159

commit 5dd17c3b53a58c1cb5eaab903826abe94765ccd6
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Mon May 3 21:01:59 2021 +0200

    Release v4.11.0

commit ebbf8e517ad96486ba61bfe0d73793c9220aeb3a
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Mon May 3 20:54:47 2021 +0200

    Update README

commit 76f1ae2f1a8be717f00abc3a4e1aee12ef1e3bd3
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Mon May 3 20:23:02 2021 +0200

    Add Credits to README

commit b9c536534c4d9057458adcdcae419b6194edd21a
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Mon May 3 20:22:53 2021 +0200

    Add new *_options to README

commit 68f0d9568719b1d61d70fc9e55aab2e1107418b6
Merge: 48d37c1 ccad859
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Mon May 3 17:43:58 2021 +0200

    Merge pull request #156 from funkjedi/status-add-options

    Add options for git add/status commands

commit ccad85927e11d6dfde4656e1f83f9cfc989fb80e
Author: Tim Robertson <funkjedi@gmail.com>
Date:   Mon May 3 11:26:56 2021 -0400

    Add options for add/status commands

commit 48d37c1ffbe4639e16d47fef924857386bc4a44a
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Mon Apr 12 21:04:42 2021 +0200

    Tag v4.10.0

commit 4c05e3d58e81e7c2d32d070dfb3a7b56543dd81c
Merge: be7095c 3053f48
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Mon Apr 12 20:54:39 2021 +0200

    Merge pull request #154 from stefanzweifel/fixes/153

    Add "disable_globbing" option to prevent shell from expanding filenames

commit 3053f48bddbec118b0418e02b7a95baa912558a1
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sat Apr 10 17:13:22 2021 +0200

    Update Comments

commit cfd366418e6662129cca321e305f4ee2cdf7b736
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sat Apr 10 17:11:30 2021 +0200

    Update README

commit be370eccae5f149a5d32e99eab65e1529881293c
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sat Apr 10 17:10:27 2021 +0200

    Create flag to disable globbing

commit f4f9aedbeeb7b43f91af0984f9049b9662d835be
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sat Apr 10 16:58:48 2021 +0200

    Set noglob in git-auto-commit

commit e610a5104baa0b55fd8b51e0736cf0a938799589
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sat Apr 10 16:53:50 2021 +0200

    Add failing test

commit be7095c202abcf573b09f20541e0ee2f6a3a9d9b
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Thu Mar 4 17:53:06 2021 +0100

    Release v4.9.2

commit ae9ae1b5b8055aa177b76bff5d5df7d4e2a486a7
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Tue Mar 2 20:21:56 2021 +0100

    Update Changelog

commit e9446689101f7c2d2770a1ceb1095632a9394c82
Merge: 296e083 9bb0fd2
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Tue Mar 2 20:20:29 2021 +0100

    Merge pull request #146 from stefanzweifel/fixes/145

    Push Tags along with Commits

commit 9bb0fd232468a9ace186bd1fbbf057fd00d38e5a
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Fri Feb 26 20:17:32 2021 +0100

    Push tags by using —follow-tags and —atomic

    By using —follow-tags we push all annotated tags alongside the commit to the remote repository.
    In addition, we’re using —atomic. This ensures that all refs are updated.

    - https://github.blog/2015-04-30-git-2-4-atomic-pushes-push-to-deploy-and-more/#atomic-pushes
    - https://stackoverflow.com/a/3745250
    - https://therightstuff.medium.com/the-rights-and-wrongs-of-git-push-with-tags-998667eaed8f

commit 175c2cd836894795556a997392806be860200af1
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Fri Feb 26 19:39:59 2021 +0100

    Add failing tests

commit 296e083b4c312cf3438feb21957a85fa9677f61d
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Tue Feb 23 21:18:33 2021 +0100

    Tag v4.9.1

commit 871ade1c452c19c4fcd0cb54813bc0785ddce69d
Merge: 3870982 75625df
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Tue Feb 23 21:16:57 2021 +0100

    Merge pull request #144 from stefanzweifel/revert-140-feature/create-new-branch-during-checkout

    Revert "Feature: Create a new branch, if the given branch name doesn't exist yet"

commit 75625df4f37c12d986c51ecc74681d8052c17418
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Tue Feb 23 21:14:19 2021 +0100

    Revert "Feature: Create a new branch, if the given branch name doesn't exist yet"

commit 3870982ac5c693c6c70bb3a7aeafd47ab2682c0d
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Tue Feb 23 20:08:01 2021 +0100

    Improve Names of test repo folders

commit 268ec0c24022281e267b095789643cf0db356bc6
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sat Feb 20 20:34:30 2021 +0100

    Release v4.9.0

commit 9abc4c41e5eb222d1587cac8fd385d2da08e0b73
Merge: 520c63c 1aee6e6
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Sat Feb 20 20:29:23 2021 +0100

    Merge pull request #140 from stefanzweifel/feature/create-new-branch-during-checkout

    Feature: Create a new branch, if the given branch name doesn't exist yet

commit 1aee6e6b463f527d8442705854b96d00063fb513
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sun Feb 7 16:14:11 2021 +0100

    Make Linter Happy

commit 94941cff883114143a7c3e07a8c1c8466ce26b60
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sun Feb 7 16:09:59 2021 +0100

    Cleanup Code

commit 7507738fca3b693f9acab619645052e320f693ed
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sun Feb 7 16:07:43 2021 +0100

    Use git branch --list

commit 53438d58ce6383842b60d7ce86be286429d4253d
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sun Feb 7 15:44:48 2021 +0100

    Create new branch if NAME is given

commit 8056699617f30526b19f5283f6310d5113e4ffd7
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sun Feb 7 15:44:12 2021 +0100

    Add Testcase

commit 520c63c1719172f8c9682bf244016d9471e7934a
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sat Feb 6 19:11:12 2021 +0100

    Add Link to Article

commit a6006229e0c9695d16a585acf619a3a9548b18f9
Merge: 8f33b6c 40b5569
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Mon Jan 18 20:34:44 2021 +0100

    Merge pull request #138 from stefanzweifel/test-rm-is-tracked

    Add Test to verify that removed files are picked up by the Action

commit 40b55695d1eaf451c0dd4e1fd2a845918eb2466b
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Mon Jan 18 20:31:50 2021 +0100

    Add Test

commit 8f33b6cc319f18f6a25897eecf76783193c02483
Merge: 350754f c4ab3ec
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Fri Jan 15 15:21:34 2021 +0100

    Merge pull request #136 from palmerabollo/patch-1

    docs: minor typo

commit c4ab3ecb7eda66c1a3ad51971e04826ac16f0fe3
Author: Guido García <palmerabollo@gmail.com>
Date:   Fri Jan 15 15:19:06 2021 +0100

    docs: minor typo

commit 350754fe3a2cbd29544b31c9961d4fa1ae27fd61
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Fri Jan 8 17:31:07 2021 +0100

    Update LICENSE

commit 75802d269e7721b5146d08f6063ba3097c55ad2b
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Tue Dec 15 20:53:30 2020 +0100

    Release v4.8.0

commit 5b85132a3c317eea32a1237acf0b81736bd6af5c
Merge: 6576a06 292ae30
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Tue Dec 15 20:48:50 2020 +0100

    Merge pull request #131 from stefanzweifel/git-fetch-depth

    Set --depth on git-fetch and make call to git-fetch optional

commit 292ae30da667eb2a35987eb45f74429fa1f816da
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Tue Dec 15 20:45:42 2020 +0100

    Add skip_fetch to README

commit b53a2f8baf51055d691e380828085b7e8825ce1c
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Tue Dec 15 20:30:42 2020 +0100

    Set --depth to 1

commit a9021d53592e88e13cf7dba2fb9fd3bab07156fc
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sun Dec 13 09:31:16 2020 +0100

    Add skip_fetch input option

    This new option will allow users to skip the execution of `git fetch` if it has a negative impact in their workflows.

    In a future PR I will probably remove the call to git-fetch interely. It was added in #108 in relation to a problem with slashes in branch names. That problem wasn't properly fixed though.

commit fafea853e8a6a0a728c7244a91dc5facc66d0a0a
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sun Dec 13 09:22:38 2020 +0100

    Set depth on git-fetch

commit 6576a06e26dbbff92ef8842c65ae75fd47dbd306
Merge: 2e61cc5 b104287
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Wed Nov 25 21:11:30 2020 +0100

    Merge pull request #128 from stefanzweifel/refactor/better-integration-tests

    Rewrite Test Suite to no longer mock git

commit b1042871456d0ebc0cebed76a4e6210d26697d63
Author: --global <hello@stefanzweifel.io>
Date:   Wed Nov 25 21:06:22 2020 +0100

    Update README

commit b8b8026fe41a3ebef226df9de9fc35b66281ae8e
Author: --global <hello@stefanzweifel.io>
Date:   Wed Nov 25 21:04:32 2020 +0100

    Improve Assertions

commit fae0e424e9f921b1075be91a592e86817edaa995
Author: --global <hello@stefanzweifel.io>
Date:   Wed Nov 25 20:47:28 2020 +0100

    Remove old Integration Tests Workflow

commit a1604ef1d59f9e4e568fd6cfcfa4ce2c3d003264
Author: --global <hello@stefanzweifel.io>
Date:   Wed Nov 25 20:31:12 2020 +0100

    Update .gitignore

commit 152b8c00c6d43e154f922a691770e66940bbaaaa
Author: --global <hello@stefanzweifel.io>
Date:   Wed Nov 25 20:28:15 2020 +0100

    Move git user config

commit 8edcd8b7187a7ef5eb7eedac612499cf13ccb1ab
Author: --global <hello@stefanzweifel.io>
Date:   Wed Nov 25 20:26:32 2020 +0100

    Debug failed Workflow run

commit 8f9132651a088dbc9982422421c3511119b6f524
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Wed Nov 25 20:23:17 2020 +0100

    Update Order how git user is configured

commit 6c72ab77996149f807345547b0e0fba5be31c4bb
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Wed Nov 25 20:21:26 2020 +0100

    Use git config --global to setup repo

commit 983b799941f16d8b8782e7d568818b1d9f7a23f5
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Wed Nov 25 20:19:39 2020 +0100

    Output Commit User, Author and Message variables

commit bee2ad60b0828bbda458dbe361f805ffd76bd1b1
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Wed Nov 25 20:18:56 2020 +0100

    Rewrite Tests

commit ac4585b8d5555cc7dd8fcb146827b9ba7471c543
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Wed Nov 25 20:18:52 2020 +0100

    Update Tests Workflow

commit 4e7742676e76c1599909d03de256252f056ca1bf
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Wed Nov 25 20:18:43 2020 +0100

    Install bats-assert and bats-support dependencies

commit 2e61cc5f416547563b91323fb98bebade313a869
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Mon Nov 2 20:14:07 2020 +0100

    Add "Used By" Badge

commit 021e855056637cd1b5c7722fa8305c944945f93d
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Wed Oct 28 20:27:07 2020 +0100

    Improve Wording in the Intro of the README

commit 7cec9acee664884964a44d29ae0a040333c45e12
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Wed Oct 28 20:26:25 2020 +0100

    Improve Example

commit bbd291750d2526367d915d5197485331dc2d8dc7
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sat Oct 24 11:41:07 2020 +0200

    Release v4.7.2

commit 114a5e6044e62373e10fa63d41f94536281b0a34
Merge: 4bab898 4a75a2e
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Sat Oct 24 11:36:23 2020 +0200

    Merge pull request #122 from stefanzweifel/revert-113-pr/complex-branches-2

    Revert "Fix checking out branch names with / chars"

commit 4a75a2e7232cce7f8ff5750d647f536f6ef0b5ff
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sat Oct 24 11:33:52 2020 +0200

    Disable shellsheck for git-checkout

commit 1e826be61c9226fa82503b1c17138d92f5feda1f
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Sat Oct 24 11:28:52 2020 +0200

    Revert "Fix checking out branch names with / chars"

commit 4bab898d25ef411ea80585b0bad3e96bf942959f
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Thu Oct 22 19:52:43 2020 +0200

    Create Remote Branch before running Action

commit 45872c3c236677c501619771ec8194edac5904d3
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Thu Oct 22 07:38:33 2020 +0200

    Fix Typo in CHANGELOG

commit 9b7c21583ca43320493a9acb0823afd9477c5739
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Thu Oct 22 07:37:21 2020 +0200

    Release v4.7.1

commit 4cc90c7784a13a3d101141dc349937763edde51f
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Thu Oct 22 07:37:16 2020 +0200

    Fix Linter Errors

commit 367938329df15ac15e03315f00b76ee6a269b75e
Merge: 30cd17b 25cac34
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Thu Oct 22 07:35:11 2020 +0200

    Merge pull request #120 from stefanzweifel/revert-115-feature/checkout-options

    Revert "Feature: Checkout Options"

commit 25cac34d8d30272e0e97bad0cef6a1a68c20b9db
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Thu Oct 22 07:33:38 2020 +0200

    Revert "Feature: Checkout Options"

commit 30cd17bff08b0674e555fe71ab3ac24a2f2964fa
Merge: 8f5b58c 65928d2
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Wed Oct 21 20:45:48 2020 +0200

    Merge branch 'master' of github.com:stefanzweifel/git-auto-commit-action

commit 8f5b58c89c42f745f9dd6fcd8671dd723fc982ec
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Wed Oct 21 20:45:37 2020 +0200

    Tag v4.7.0

commit 65928d28986b5dd096e6f156e4b3b99bd5633473
Merge: e361041 6b4ef14
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Sat Oct 17 14:59:06 2020 +0200

    Merge pull request #118 from stefanzweifel/tests-on-github-actions

    Test Action through GitHub Actions ♾️

commit 6b4ef1444cd7b233a2a698671fb86e559f85d6e7
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sat Oct 17 14:52:58 2020 +0200

    Add Badge

commit 55291ea168f7f68a8c454cebd44eacb8c1ae28e6
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sat Oct 17 14:51:58 2020 +0200

    Rename Step

commit 2b5c86365b6cf92bb6ab76c48e82381e330abee1
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sat Oct 17 14:46:50 2020 +0200

    Delete Remote Branch

commit ff28943460405cae34fdde3ffb4a59506654cd74
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sat Oct 17 14:29:42 2020 +0200

    Add Integration Tests

commit e3610414be76613401d6276c29a125c991ae265b
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sat Oct 17 14:15:18 2020 +0200

    Update README

commit 042c3265d5b98c5d423db7c48e5079b3f14d2377
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sat Oct 17 14:14:28 2020 +0200

    Update README

commit 90cedba8bc96e7d861568f839ae1cc0dd34d5a4b
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Fri Oct 16 19:26:44 2020 +0200

    Upgrade bats to v1.2.1

commit b833fe0e9d7231206c55b22918719bc18381b99e
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Fri Oct 16 09:18:41 2020 +0200

    Update Code Example for pull_request_target trigger

commit 653ea719eae5305f1fb8a05cc91b0b95e9314eb3
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Thu Oct 15 21:15:41 2020 +0200

    Update Changelog

commit 47c724214a2b10b4f9657d68190101b19b3f3e88
Merge: 6456430 1ba48c6
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Thu Oct 15 20:36:06 2020 +0200

    Merge pull request #115 from stefanzweifel/feature/checkout-options

    Feature: Checkout Options

commit 1ba48c6d7f0aedfbdaceef720b38b65f1b6b6db9
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Thu Oct 15 20:30:26 2020 +0200

    Fix Linter Errors in entrypoint.sh

commit b9e4cea0ef10674620338288a4172f232f93cf45
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Thu Oct 15 20:30:19 2020 +0200

    Disable Markdown Linter

commit cfdb7e609e6c88cf7668f810abf0d6398ebce8cf
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Thu Oct 15 20:26:03 2020 +0200

    Add checkout_options to README

commit 849613a3adf99d0db5126b9e9ed50d8dffe19f85
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Thu Oct 15 20:23:04 2020 +0200

    Add test to cover checkout-options

commit 0ee9fb7263afb95069f9e98e32c3035eeea91997
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Thu Oct 15 20:21:08 2020 +0200

    Add checkout_options

commit 6456430b6b0b92ff51a83476962d42f640b4429b
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Thu Oct 15 20:15:31 2020 +0200

    Ignore shellchecks

commit 7f67b0b49b68d139892f4fc426aff8ebc0e29802
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Wed Oct 14 20:28:01 2020 +0200

    Rename Test

commit 8700c3bc1c553401c42dbf747310c827ed4e871a
Merge: 9c1e5d1 872d72f
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Mon Oct 12 16:34:53 2020 +0200

    Merge pull request #113 from docwhat/pr/complex-branches-2

    Fix checking out branch names with / chars

commit 872d72f1ae5a333ec024ea83e96bcc73beb85e12
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Mon Oct 12 16:33:12 2020 +0200

    Update Tests

commit f905f0070663c49141cb0115b09d8f2ef0e99573
Author: Christian Höltje <docwhat@gerf.org>
Date:   Mon Oct 12 10:17:25 2020 -0400

    Fix checking out branch names with / chars

    If git can't automatically figure out if the argument is a branch or
    a path, it will need to be told explicitly by using `--`:

        Use '--' to separate paths from revisions, like this:
        'git <command> [<revision>...] -- [<file>...]'

    Fixes: #106

commit 9c1e5d1c6aa0af89d40c0dc69b717344b3a39a64
Merge: 44aeb24 18a94e4
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Mon Oct 12 08:18:24 2020 +0200

    Merge pull request #111 from francescobianco/patch-1

    Update README.md

commit 18a94e4f78d7b0d23f90829dfc5eaf6339e69b97
Author: Francesco Bianco <info.francescobianco@gmail.com>
Date:   Sun Oct 11 22:35:28 2020 +0200

    Update README.md

commit 44aeb24da754fc1a36d251aaeef8dcf49c1ed239
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sun Oct 11 20:36:41 2020 +0200

    Fix Typo in Changelog

commit 5c9bfe7477fd67ca1ffc9fed4a69fb7a6a46dcfe
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sun Oct 11 20:34:17 2020 +0200

    Tag v4.6.0

commit 814219db13d7ec906fba1a318183dc0b2a522c8f
Merge: 8f24339 a204abc
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Sun Oct 11 20:16:25 2020 +0200

    Merge pull request #110 from Aebrathia/patch-1

    Make commit_message optional #103

commit a204abce1607962ee97d03bd289671261437ee81
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Sun Oct 11 20:14:15 2020 +0200

    Update action.yml

commit fc18df141785036954480bc8cd480697c262749f
Author: Andréa Maugars <andrea.maugars@gmail.com>
Date:   Sun Oct 11 14:45:47 2020 +0200

    Make commit_message optional

commit 8f243393e77168d8afa223758754070ed986f884
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sun Oct 11 11:47:09 2020 +0200

    Link Tests Badge

commit fc5b9bf8cf854beaa30543b43f9097e3a6c45d6b
Merge: 862aa0e a818c89
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Sun Oct 11 11:44:48 2020 +0200

    Merge pull request #109 from stefanzweifel/improve-testsuite

    Expand existing BATS Test Suite to cover every feature

commit a818c89e49f1866fce6bd0d7a56dc44c5f33fd35
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sun Oct 11 11:24:53 2020 +0200

    Add can-work-with-empty-branch-name-and-tags test

commit 8bf1b5695aa7e6ad1ea71e598fe5c66f94100025
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sun Oct 11 11:21:16 2020 +0200

    Add can-work-with-empty-branch-name test

commit ea30556d538781bae5a9e0013cff22f69297e5da
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sun Oct 11 11:21:06 2020 +0200

    Add can-checkout-different-branch test

commit cd7c7f1a8ae6b99aa04d014d3280455924362e8a
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sun Oct 11 11:20:51 2020 +0200

    Add git-push-options-are-applied test

commit 4e16840be428845b96f93445aa3ef31a6f565737
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sun Oct 11 11:20:12 2020 +0200

    Add can-create-tag test

commit b0295737db16c8cd2ed5a87b2cea4aebd66c8bf5
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sun Oct 11 11:20:01 2020 +0200

    Add commit-user-and-author-settings-are-applied test

commit 0d6d4a4b22f7b52849b24909808285e2e8155fbc
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sun Oct 11 11:19:49 2020 +0200

    Add git-commit-options-are-applied

commit 091b4004198ee7f1bcd63fae4a104ba740e27219
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sun Oct 11 11:19:38 2020 +0200

    Add git-add-file-pattern-is-applied test

commit f7e362220d08c67f4ca3c336682d0007ab2ab492
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sun Oct 11 11:19:22 2020 +0200

    WIP

commit df97d6fbd81c57e7011b0fc61e775a187af2d92d
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sun Oct 11 10:40:59 2020 +0200

    Make testing a single test easier

commit 4f0fc14d0cb5ec08dfa0acf03f4dfd21d2cde5f7
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sun Oct 11 10:40:48 2020 +0200

    Add shellmock_clean to setup method

commit cdf7b74cbf2610cf7c4faa4eaf82f24cbcc3a4f2
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sun Oct 11 10:40:40 2020 +0200

    Fix remaining TODO test

commit 862aa0e1e1b383810d3475bfa6591cbb2f223aae
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sat Oct 10 19:22:22 2020 +0200

    Update Changelog

commit a9d1ac4f06e5f3607c7aa9c3182e34d4d8835177
Merge: 60c96d8 ebf8a40
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Sat Oct 10 19:19:48 2020 +0200

    Merge pull request #108 from stefanzweifel/fetch-repo-before-checkout

    Better support branches with special characters in them

commit ebf8a401eeacd815f037a1c4aff56b0ecd17a5d5
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sat Oct 10 18:06:55 2020 +0200

    Fix Tests

commit 4b8393320bb0143d3c65d3617f0745d6e36a4c95
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sat Oct 10 17:54:11 2020 +0200

    Fetch Repo before git checkout

commit 60c96d8c0dcc15436f84fa643e7e6f9d251749d3
Merge: f922a52 16d2bf8
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Sat Oct 10 16:18:15 2020 +0200

    Merge pull request #107 from docwhat/pr/superlinter

    Use SuperLinter instead of only shellcheck

commit 16d2bf88fd84621db3aefdae17f44f89fc977729
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Sat Oct 10 16:17:58 2020 +0200

    Remove Comments from Workflow

commit 54d78531ccff74a24adc588d09017595f3c7b602
Author: Christian Holtje <docwhat@gerf.org>
Date:   Sat Oct 10 01:12:48 2020 -0400

    Use SuperLinter instead of only shellcheck

commit f922a52bf1651fa65ec28b56ae9c004c0c898fbc
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Tue Oct 6 09:13:19 2020 +0200

    Use "main" as branch name in example

commit 0bf17c328ad81076f2016dd37899ec6489ea5962
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Tue Oct 6 09:11:36 2020 +0200

    Fix Example using changes_detected output

commit 240b9ad1fdab65e03bd7fa66160df9cde70b93d2
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Mon Oct 5 19:47:23 2020 +0200

    Add Example on how to use Outputs

commit 57054d8e7ed2a4a61b86b7ea744615ee2bc4ac3f
Merge: 90b474f 613ea33
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Wed Sep 23 15:59:12 2020 +0200

    Merge pull request #101 from OskarStark/patch-1

    Typo

commit 613ea337db8f739b6b12e91e53cb8379fa962614
Author: Oskar Stark <oskarstark@googlemail.com>
Date:   Wed Sep 23 12:43:44 2020 +0200

    Revert

commit 686020fb2a4d74917e3113116f5d0166971b4760
Author: Oskar Stark <oskarstark@googlemail.com>
Date:   Wed Sep 23 12:43:18 2020 +0200

    Typo

commit 90b474f549621b65fa80ba96ac71d9ea899be646
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sun Sep 13 14:21:10 2020 +0200

    Remove unused Steps in GitHub Workflow

commit 8c26230a11207e6bc38320cb9e557f2d0c7086d4
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sun Sep 13 14:18:41 2020 +0200

    Update git config if not set yet

commit 961d68003eee96f40d6afebfe6a9aaa44eefb38d
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sun Sep 13 14:15:28 2020 +0200

    Add yarn.lock to .gitignore

commit cbc3d50cea7154ed11a00bacb0419c1736bb7a35
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sun Sep 13 14:11:23 2020 +0200

    Add Badge

commit 9e4e2e76fadd329f03b7767cf2c1d83678330877
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Sun Sep 13 14:07:14 2020 +0200

    Add very basic test suite with bats and shellmock (#100)

    * Add bats
    * Write commits tests
    * Add Workflow
    * Add .gitignore
    * Update Test Suite
    * Disable test
    * Disable failing test for now

commit 09aaf2d8fab83bf03caa36c55299f9486467bf54
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Fri Sep 11 11:22:22 2020 +0200

    Update Changelog

commit c7ad0bdb15809dc9825b3017c243da42dec21324
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Fri Sep 11 11:20:30 2020 +0200

    Release v4.5.1

commit 9cb711878d1ca73e5d4174bae9296ea1258ec1f1
Merge: d51384f b3fc6f8
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Fri Sep 11 11:19:07 2020 +0200

    Merge pull request #98 from stefanzweifel/revert-95-master

    Revert "Creating orphan branch"

commit b3fc6f8a179a28aea990262b5547e175d4c5327f
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Fri Sep 11 11:18:24 2020 +0200

    Revert "Creating orphan branch"

commit d51384f592e63dba13a8f11c628f0fe6f70f7298
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Thu Sep 10 19:54:30 2020 +0200

    Revert "Update Workflow"

    This reverts commit 4e7ddef1e0ab72da8b267b64492d96dab33f7d1d.

commit 4e7ddef1e0ab72da8b267b64492d96dab33f7d1d
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Thu Sep 10 19:51:32 2020 +0200

    Update Workflow

commit cc7755497cca7bd62da90d744ab080bd913fed55
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Thu Sep 10 19:48:26 2020 +0200

    Release v4.5.0

commit 5c3c72f20e9a64b08dbca7257ca6d88ac7d07be8
Merge: 303ce37 505389d
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Thu Sep 10 19:44:31 2020 +0200

    Merge pull request #95 from StrongMonkey/master

    Creating orphan branch

commit 505389d146760a6e0721ff81fd856b583d5ad84e
Author: Daishan <daishan@rancher.com>
Date:   Tue Sep 1 16:47:27 2020 -0700

    Creating orphan branch

commit 303ce3718148d78f49a27bcd02b9b8ad5740d2cb
Merge: 09d3315 13efc06
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Sat Aug 22 14:45:20 2020 +0200

    Merge pull request #93 from stefanzweifel/add-note-about-forks

    Update README with instructions for forks

commit 13efc066ddaecc3aae371a1311ad7aeb9d81cdeb
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sat Aug 22 14:42:29 2020 +0200

    Small little improvements

commit 3c204cdee35eecff8797a79073c529278860ae46
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Sat Aug 22 14:21:01 2020 +0200

    Update README.md

commit 0429047166e87f0cf4167584615c23847f00cfd2
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sat Aug 22 14:13:11 2020 +0200

    Update README with instructions for forks

    GitHub recently introduced ways for Actions to run on forks.

    This update now finally allows repository maintainers to write Workflows to run code linters and fixers which can also work on the forks.

commit 09d33154012706ed2708a98763572f1513a66d5b
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sun Aug 16 20:05:44 2020 +0200

    Update Versioning Workflow

commit 1f4914882d31162256a5dd23dd006bf97be303a2
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sun Aug 16 20:03:54 2020 +0200

    Release v4.4.1

commit b5320678c18325a6ee5515718bdd7afc2a05c326
Merge: 5222c75 01ffd8c
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Sun Aug 16 19:31:45 2020 +0200

    Merge pull request #91 from HarrisonGrodin/patch-1

    Only check status of files matching file_pattern

commit 01ffd8c6f6b84adf85fdcdf0768b285bb589b1af
Author: Harrison Grodin <harrison.grodin@gmail.com>
Date:   Sat Aug 15 22:11:45 2020 -0400

    Only check status of files matching file_pattern

commit 5222c758dd90effcb66cd263a9733953565c6721
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Wed Jul 29 13:22:07 2020 +0200

    Add FUNDING.yml

commit bbcb72b1e9d53afc201482161c3cd165ac3fbe1a
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sun Jul 26 12:53:22 2020 +0200

    Update README

commit 142eb9509a022ebce63c919a0698306435905c5a
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Fri Jul 24 21:11:32 2020 +0200

    Update README

commit 0233fee8722d5e75754ffa956ae8ba9966fe1e4a
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Fri Jul 24 20:59:16 2020 +0200

    Update Protected Branch Section in README

commit 808edcd96bb4b901495f2a2c1e3820612ab5cd87
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Fri Jul 24 20:44:56 2020 +0200

    Add links to pathspec documentation

commit 1b1d53f4626b9c874d22c7fa1a1c224d93d6a25e
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Fri Jul 24 20:22:18 2020 +0200

    Move Inputs and Outputs

commit ee93725e66e9736f52ae291b180507623635f0e9
Merge: ff97e95 36304ed
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Sat Jul 18 13:50:16 2020 +0200

    Merge pull request #86 from TGTGamer/master

    Docs: #85 Add small information about command line options

commit 36304edfd2b11b3c775baf755ff07c6287735484
Author: Jonathan S <tgtgam3r@gmail.com>
Date:   Sat Jul 18 12:42:58 2020 +0100

    Update README.md

commit ff97e958aa0b9316bec0c9971a32a04e25e55446
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Thu Jul 16 11:03:50 2020 +0200

    Update README.md

commit 90282bf5e288c61cb13b793220751b33a2442da6
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Fri Jun 26 21:07:28 2020 +0200

    Release v4.4.0

commit c9eb2132b2bc392c5e06942e83a65ac38502bc2a
Merge: 984a26d c8ded28
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Fri Jun 26 21:02:58 2020 +0200

    Merge pull request #84 from stefanzweifel/feature/skip-dirty-check

    Add a "Skip Dirty Check" Option

commit c8ded2885e7f3b72df92f2c37da724701cc09d4e
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Fri Jun 26 21:00:48 2020 +0200

    Simplify IF Condition

commit f120678ed1b06752ca97fd70a5cf3ab93a5a4d69
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Thu Jun 25 20:40:31 2020 +0200

    WIP

commit 41835949327062fd9ba4712c02f7ce475a14b015
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Thu Jun 25 20:38:28 2020 +0200

    WIP

commit 49e28abb3fdf4552230e4079ca389973c3c6a004
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Thu Jun 25 20:31:48 2020 +0200

    WIP

commit 4ebfe28af09f09cc21ce0c517545faf5cd596b03
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Thu Jun 25 20:18:20 2020 +0200

    Add skip_dirty_check option

commit 984a26d8933d011f3ee6e004dc92601687517959
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sun May 17 10:20:34 2020 +0200

    Update link to versioning info in README

commit 3804c79d2e3ceba3f9d083bfc5dae811e95571f2
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sun May 17 10:08:37 2020 +0200

    Add Versioning GitHub Actions

commit 69a12041a1b53805c29aeb4ac5b2b498940b0dc5
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sat May 16 13:47:17 2020 +0200

    Release v4.3.0

commit 91b7d20ead12eb064806dd4a1d7f34f12e9a38cb
Merge: 3aae7bb 044b6b7
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Sat May 16 13:30:24 2020 +0200

    Merge pull request #78 from stefanzweifel/feature/push-options

    Feature: Push Options

commit 044b6b777c5fc321a6bde5c888021c09f77b8898
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sat May 16 13:26:59 2020 +0200

    Fix Typo

commit 9aab2f8a5c55879d73b6af18a0d677e54d92b17f
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sat May 16 13:22:34 2020 +0200

    Add example for protected branches

commit 0280d2ccee11ac9f3b381931cfe9ac095538363b
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sat May 16 13:17:00 2020 +0200

    Add push_options to README

commit b0b5ed34dd1ea9619e9e3577becb4f5a8c5bac51
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sat May 16 11:42:40 2020 +0200

    Update entrypoint to handle push_options

commit ae38c94802cb0b53b3c8fd9eaad3337b359afa7a
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sat May 16 11:42:24 2020 +0200

    Add push_options to action.yml

commit 3aae7bb63fdcf2dc8abcee91a38e676a656432a2
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sat May 16 11:24:57 2020 +0200

    Remove continous-deployment.yml

commit c180c695f2bbb58dd0dd91cdb3a937264ea0d00c
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sun May 10 13:16:25 2020 +0200

    Release v4.2.0

commit c1a70c9013721c70441ab1e59300898ab6542c5e
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sun May 10 12:59:42 2020 +0200

    Update Changelog

commit 02c4f2cf788f30bbcf0d2dacb757f74f5b09188f
Merge: fd2aab7 3c687aa
Author: Stefan Zweifel <stefanzweifel@users.noreply.github.com>
Date:   Sun May 10 13:11:32 2020 +0200

    Merge pull request #73 from spawnia/restructure-readme

    Bundle limitations and gotchas together in the README.md

commit 3c687aa8ba6e72b879b67bfa8476c19e6a884b34
Author: Stefan Zweifel <hello@stefanzweifel.io>
Date:   Sun May 10 13:09:18 2020 +0200

    Replace head_ref with branch name example

commit a69eabaead46479ed64f7de77710bb518f3f5c85
Author: spawnia <benedikt@franke.tech>
Date:   Sun May 10 12:55:07 2020 +0200

    clarify branch option

commit 9f2c45c9eb26d5ea18d145bc32001aef33734b09
Author: spawnia <benedikt@franke.tech>
Date:   Sun May 10 12:51:21 2020 +0200

    Remove unneeded hints to re-specify the default branch

commit 5bf88dc2fdc1275325567027c6de1c39dfee7fbd
Merge: 1157d7b fd2aab7
Author: spawnia <benedikt@franke.tech>
Date:   Sun May 10 12:48:11 2020 +0200

…
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

4 participants