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
; List of keywords used in Pull Request comments to automatically reopen a related issue
78
78
REOPEN_KEYWORDS=reopen,reopens,reopened
79
+
; In the default merge message for squash commits include at most this many commits
80
+
DEFAULT_MERGE_MESSAGE_COMMITS_LIMIT=50
81
+
; In the default merge message for squash commits limit the size of the commit messages to this
82
+
DEFAULT_MERGE_MESSAGE_SIZE=5120
83
+
; In the default merge message for squash commits walk all commits to include all authors in the Co-authored-by otherwise just use those in the limited list
84
+
DEFAULT_MERGE_MESSAGE_ALL_AUTHORS=false
85
+
; In default merge messages limit the number of approvers listed as Reviewed-by: to this many
86
+
DEFAULT_MERGE_MESSAGE_MAX_APPROVERS=10
87
+
; In default merge messages only include approvers who are official
Copy file name to clipboardExpand all lines: docs/content/doc/advanced/config-cheat-sheet.en-us.md
+5
Original file line number
Diff line number
Diff line change
@@ -77,6 +77,11 @@ Values containing `#` or `;` must be quoted using `` ` `` or `"""`.
77
77
keywords used in Pull Request comments to automatically close a related issue
78
78
-`REOPEN_KEYWORDS`: **reopen**, **reopens**, **reopened**: List of keywords used in Pull Request comments to automatically reopen
79
79
a related issue
80
+
-`DEFAULT_MERGE_MESSAGE_COMMITS_LIMIT`: **50**: In the default merge message for squash commits include at most this many commits. Set to `-1` to include all commits
81
+
-`DEFAULT_MERGE_MESSAGE_SIZE`: **5120**: In the default merge message for squash commits limit the size of the commit messages. Set to `-1` to have no limit.
82
+
-`DEFAULT_MERGE_MESSAGE_ALL_AUTHORS`: **false**: In the default merge message for squash commits walk all commits to include all authors in the Co-authored-by otherwise just use those in the limited list
83
+
-`DEFAULT_MERGE_MESSAGE_MAX_APPROVERS`: **10**: In default merge messages limit the number of approvers listed as `Reviewed-by:`. Set to `-1` to include all.
84
+
-`DEFAULT_MERGE_MESSAGE_OFFICIAL_APPROVERS_ONLY`: **true**: In default merge messages only include approvers who are officially allowed to review.
0 commit comments