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
For more information about running Actions on forks, see [this announcement from GitHub](https://github.blog/2020-08-03-github-actions-improvements-for-fork-and-pull-request-workflows/).
@@ -406,7 +406,7 @@ The steps in your workflow might look like this:
@@ -462,7 +462,7 @@ You can learn more about Personal Access Token in the [GitHub documentation](htt
462
462
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.
463
463
464
464
```yaml
465
-
- uses: stefanzweifel/git-auto-commit-action@v5
465
+
- uses: stefanzweifel/git-auto-commit-action@v6
466
466
with:
467
467
commit_message: Apply php-cs-fixer changes
468
468
push_options: --force
@@ -492,7 +492,7 @@ This is due to the fact, that the `*.md`-glob is expanded before sending it to `
492
492
To fix this add `disable_globbing: true` to your Workflow.
493
493
494
494
```yaml
495
-
- uses: stefanzweifel/git-auto-commit-action@v5
495
+
- uses: stefanzweifel/git-auto-commit-action@v6
496
496
with:
497
497
file_pattern: '*.md'
498
498
disable_globbing: true
@@ -520,7 +520,7 @@ yarn test
520
520
521
521
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).
522
522
523
-
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.
523
+
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@v6` to always use the latest release of the current major version.
524
524
(More information about this [here](https://help.github.com/en/actions/building-actions/about-actions#versioning-your-action).)
0 commit comments