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 cff923d commit 76dfe1bCopy full SHA for 76dfe1b
tools/DependencyUpdater/Program.cs
@@ -1124,7 +1124,7 @@ private static PrCreationOutcome CretePRWithUpdate(
1124
// check if there is already a PR with these updates
1125
var openPRs = _octokitClient.PullRequest.GetAllForRepository(repoOwner, libraryName, new PullRequestRequest() { State = ItemStateFilter.Open }).Result;
1126
1127
- var updatePRs = openPRs.Where(pr => pr.User.Login == _gitHubUser && pr.Title == prTitle && pr.Body == commitMessage);
+ var updatePRs = openPRs.Where(pr => pr.Title == prTitle && pr.Body == commitMessage);
1128
1129
if (updatePRs.Any())
1130
{
0 commit comments