diff options
author | yp05327 <576951401@qq.com> | 2025-01-24 03:26:39 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-23 18:26:39 +0000 |
commit | 594b8350b174e5832c1f91c55028ac76246bbef7 (patch) | |
tree | 66d1cf37f5f2dd855167f9645b19cc11aca0f85d | |
parent | 340d9ec42d0f0596d78d64c939da12e22f9c1fe5 (diff) | |
download | gitea-594b8350b174e5832c1f91c55028ac76246bbef7.tar.gz gitea-594b8350b174e5832c1f91c55028ac76246bbef7.zip |
Add missing POPULATE_SQUASH_COMMENT_WITH_COMMIT_MESSAGES in app.example.ini (#33363)
Ref:
https://docs.gitea.com/next/administration/config-cheat-sheet?_highlight=populate_squash_comment_with_commit_messages#repository---pull-request-repositorypull-request
-rw-r--r-- | custom/conf/app.example.ini | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/custom/conf/app.example.ini b/custom/conf/app.example.ini index 15c525260f..899209874f 100644 --- a/custom/conf/app.example.ini +++ b/custom/conf/app.example.ini @@ -1129,6 +1129,9 @@ LEVEL = Info ;; In default merge messages only include approvers who are official ;DEFAULT_MERGE_MESSAGE_OFFICIAL_APPROVERS_ONLY = true ;; +;; In default squash-merge messages include the commit message of all commits comprising the pull request. +;POPULATE_SQUASH_COMMENT_WITH_COMMIT_MESSAGES = false +;; ;; Add co-authored-by and co-committed-by trailers if committer does not match author ;ADD_CO_COMMITTER_TRAILERS = true ;; |