You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -465,7 +465,7 @@ You can learn more about Personal Access Token in the [GitHub documentation](htt
465
465
If you go the "force pushes" route, you have to enable force pushes to a protected branch (See [documentation](https://help.github.com/en/github/administering-a-repository/enabling-force-pushes-to-a-protected-branch)) and update your Workflow to use force push like this.
466
466
467
467
```yaml
468
-
- uses: stefanzweifel/git-auto-commit-action@v4
468
+
- uses: stefanzweifel/git-auto-commit-action@v5
469
469
with:
470
470
commit_message: Apply php-cs-fixer changes
471
471
push_options: --force
@@ -495,7 +495,7 @@ This is due to the fact, that the `*.md`-glob is expanded before sending it to `
495
495
To fix this add `disable_globbing: true` to your Workflow.
496
496
497
497
```yaml
498
-
- uses: stefanzweifel/git-auto-commit-action@v4
498
+
- uses: stefanzweifel/git-auto-commit-action@v5
499
499
with:
500
500
file_pattern: '*.md'
501
501
disable_globbing: true
@@ -523,7 +523,7 @@ yarn test
523
523
524
524
We use [SemVer](http://semver.org/) for versioning. For the versions available, see the [tags on this repository](https://github.com/stefanzweifel/git-auto-commit-action/tags).
525
525
526
-
We also provide major version tags to make it easier to always use the latest release of a major version. For example, you can use `stefanzweifel/git-auto-commit-action@v4` to always use the latest release of the current major version.
526
+
We also provide major version tags to make it easier to always use the latest release of a major version. For example, you can use `stefanzweifel/git-auto-commit-action@v5` to always use the latest release of the current major version.
527
527
(More information about this [here](https://help.github.com/en/actions/building-actions/about-actions#versioning-your-action).)
0 commit comments