Skip to content
This repository was archived by the owner on Sep 20, 2022. It is now read-only.

Commit 0543d3f

Browse files
author
Jake Ginnivan
committed
Fixes #20 - pull requests should not be included
1 parent 52d2673 commit 0543d3f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/GitReleaseNotes/IssueTrackers/GitHub/GitHubIssueTracker.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ private IEnumerable<Issue> GetPotentialIssues(Dictionary<ReleaseInfo, List<Commi
117117
Filter = IssueFilter.All,
118118
Since = since,
119119
State = ItemState.Closed
120-
}).Result;
120+
}).Result.Where(i=>i.PullRequest == null);
121121
}
122122
}
123123
}

0 commit comments

Comments
 (0)