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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
18
18
-**[BREAKING]** The `signoff` input has been removed, use `commit` instead. (#331)
19
19
-**[BREAKING]** The `pull_strategy` input has been removed, use `pull` instead.
20
20
-**[BREAKING]** The `branch` and `branch_mode` inputs have been removed, check commit [`6fdb34e`](https://github.com/EndBug/add-and-commit/commit/6fdb34ed01d242c909eeb7e31bf1c4d37db43a54) for more info.
21
+
-**[BREAKING]** The `pull` input doesn't support `NO-PULL` anymore: if you don't want the action to pull, simply remove the input, as it's the default behavior now.
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -66,9 +66,9 @@ Add a step like this to your workflow:
66
66
# Default: ignore
67
67
pathspec_error_handling: ignore
68
68
69
-
# Arguments for the git pull command. Use NO-PULL to avoid the action pulling at all.
70
-
# Default: '--no-rebase'
71
-
pull: 'NO-PULL or --rebase --autostash ...'
69
+
# Arguments for the git pull command. By default, the action does not pull.
70
+
# Default: ''
71
+
pull: '--rebase --autostash ...'
72
72
73
73
# Whether to push the commit and, if any, its tags to the repo. It can also be used to set the git push arguments (see the paragraph below for more info)
0 commit comments