We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c250bd commit 8b1d805Copy full SHA for 8b1d805
src/dotnet-roslyn-tools/PRFinder/Hosts/GitHub.cs
@@ -96,7 +96,7 @@ public bool ShouldSkip(Commit commit, ref bool mergePRFound)
96
var prNumber = match.Groups[2].Value;
97
98
// Squash PR Messages are in the form "Nullable annotate TypeCompilationState and MessageID (#39449)"
99
- // Take the 1st line since it should be descriptive.
+ // Take the first line up until the PR number.
100
var comment = match.Groups[1].Value;
101
return new(prNumber, comment);
102
}
0 commit comments