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
- Add `commit_user_name`, `commit_user_email` and `commit_author` input options for full customzation on how the commit is being created [#39](https://github.com/stefanzweifel/git-auto-commit-action/pull/39)
11
+
9
12
### Removed
10
13
- Remove the need of a GITHUB_TOKEN. Users now have to use `actions/checkout@v2` or higher [#36](https://github.com/stefanzweifel/git-auto-commit-action/pull/36)
Copy file name to clipboardExpand all lines: README.md
+8-3Lines changed: 8 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
# git-auto-commit-action
2
2
3
-
This GitHub Action automatically commits files which have been changed during a Workflow run and pushes the Commit back to GitHub.
4
-
The Committer is "GitHub Actions <actions@github.com>" and the Author of the Commit is "Your GitHub Username <github_username@users.noreply.github.com>.
3
+
This GitHub Action automatically commits files which have been changed during a Workflow run and pushes the commit back to GitHub.
4
+
The default committer is "GitHub Actions <actions@github.com>" and the default author of the commit is "Your GitHub Username <github_username@users.noreply.github.com>".
5
5
6
6
If no changes are detected, the Action does nothing.
7
7
@@ -28,8 +28,13 @@ Add the following step at the end of your job.
28
28
# Optional glob pattern of files which should be added to the commit
0 commit comments