Copilot commented on code in PR #13434:
URL: https://github.com/apache/trafficserver/pull/13434#discussion_r3659225061
##########
.asf.yaml:
##########
@@ -27,8 +27,8 @@ github:
enabled_merge_buttons:
# Enable squash button:
squash: true
- # Disable rebase button:
- rebase: false
+ # Enable rebase button:
+ rebase: true
Review Comment:
The diff shows the new `# Enable rebase button:` and `rebase: true` lines
are indented differently from the surrounding entries in
`enabled_merge_buttons`. YAML is indentation-sensitive; if `rebase` is not
aligned with `squash` and `merge`, it may be parsed incorrectly (or as a
different nesting level) by whatever consumes `.asf.yaml`. Align the
indentation of `# Enable rebase button:` and `rebase: true` to match the
`squash` and `merge` keys under `enabled_merge_buttons`.
--
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]