Copilot commented on code in PR #3644:
URL: https://github.com/apache/texera/pull/3644#discussion_r2261711798
##########
.asf.yaml:
##########
@@ -46,21 +46,30 @@ github:
# Enable github discussions
discussions: true
+ pull_requests:
+ # allow auto-merge
+ allow_auto_merge: true
+ # enable updating head branches of pull requests
+ allow_update_branch: true
+ # auto-delete head branches after being merged
+ del_branch_on_merge: true
+
enabled_merge_buttons:
squash: true
+ squash_commit_message: PR_TITLE_AND_DESC
Review Comment:
The value 'PR_TITLE_AND_DESC' appears to be incorrect. GitHub's valid
options for squash_merge_commit_message are 'PR_TITLE', 'COMMIT_MESSAGES', or
'BLANK'. Consider using 'PR_TITLE' if you want only the PR title, or
'COMMIT_MESSAGES' if you want commit messages included.
```suggestion
squash_commit_message: PR_TITLE
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]