Skip to content

Commit 126e8da

Browse files
committed
Merge branch 'fix/failed-explain-plan-caching' of https://github.com/newrelic/newrelic-dotnet-agent into fix/failed-explain-plan-caching
2 parents d05feb4 + 186ef81 commit 126e8da

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

build/Dotty/Program.cs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,15 @@ static async Task<string> CreateGithubPullRequestForNewVersions(IEnumerable<Proj
267267

268268
// create PR
269269
var newPr = new NewPullRequest(commitMessage, branchName, "main");
270-
newPr.Body = "Dotty updated the following for your convenience.\n\n" + updateLog + "\n\n**Don't forget to update the .NET Compatibility docs:memo: with the new versions!**\n";
270+
newPr.Body =
271+
$@"Dotty updated the following for your convenience.
272+
273+
{updateLog}
274+
275+
Developer checklist:
276+
- [ ] Verify all integration tests complete successfully
277+
- [ ] Update .NET agent compatibility / requirements documentation to reflect the latest supported versions";
278+
271279
var pullRequest = await ghClient.PullRequest.Create(Owner, Repo, newPr);
272280
Log.Information($"Successfully created PR for {branchName} at {pullRequest.HtmlUrl}");
273281

0 commit comments

Comments
 (0)