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: README.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,6 +47,7 @@ Features:
47
47
commit_prefix: "[AUTO]"
48
48
commit_message: "Automatic commit"
49
49
force: false
50
+
force_without_lease: false
50
51
target_branch: update/version
51
52
```
52
53
@@ -58,7 +59,8 @@ Features:
58
59
| amend | No | `false` | Whether to make amendment to the previous commit (`--amend`). Cannot be used together with `commit_message` or `commit_prefix`. |
59
60
| commit_prefix | No | `""` | Prefix added to commit message. Combines with `commit_message`. |
60
61
| commit_message | No | `""` | Commit message to set. Combines with `commit_prefix`. Cannot be used together with `amend`. |
61
-
| force | No | `false` | Whether to use force push for fast-forward changes (`--force`). Use only if necessary, e.g. when using `--amend`. And set `fetch-depth: 0` for `actions/checkout`. |
62
+
| force | No | `false` | Whether to use force push with lease (`--force-with-lease`). Use only if necessary, e.g. when using `--amend`. And set `fetch-depth: 0` for `actions/checkout`. |
63
+
| force_without_lease | No | `false` | Whether to use force push without lease (`--force`). Use only when you need to overwrite remote changes. Potentially dangerous. |
62
64
| no_edit | No | `false` | Whether to not edit commit message when using amend (`--no-edit`). |
0 commit comments