-
Notifications
You must be signed in to change notification settings - Fork 4k
GH-33687: [Dev] Fix commit message generation in merge script #33691
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
* Regex for removing HTML comments was pathologically slow because of greedy pattern matching * Output of regex replacement was ignored (!) * Collapse extraneous newlines in generated commit message * Improve debugging output
|
Hmm, I thought we had bumped the max line length but apparently not always? |
It seems the config wasn't being picked up. I have merged the PR that should really use the new max line length here: 2f8e2b2 |
raulcd
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
|
Thanks for fixing this! (and sorry for too eagerly merging that previous PR without testing it myself ..) |
|
Benchmark runs are scheduled for baseline = 2f8e2b2 and contender = fa2f45d. fa2f45d is a master commit associated with this PR. Results will be available as each benchmark for each run completes. |
* Regex for removing HTML comments was pathologically slow because of greedy pattern matching * Output of regex replacement was ignored (!) * Collapse extraneous newlines in generated commit message * Improve debugging output * Closes: #33687 Authored-by: Antoine Pitrou <[email protected]> Signed-off-by: Antoine Pitrou <[email protected]>
Regex for removing HTML comments was pathologically slow because of greedy pattern matching
Output of regex replacement was ignored (!)
Collapse extraneous newlines in generated commit message
Improve debugging output
Closes: [Dev] Merge script regex can be pathologically slow #33687