File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -79,15 +79,12 @@ $gitParams = @(
7979 ' --first-parent'
8080 " $CommitID ..$HeadCommitID "
8181 ' --format="%H"'
82- ' --'
83- ' .'
84- ' ":(exclude)*.md"'
8582)
8683$commits = & git @gitParams
8784
8885$prs = @ ()
8986foreach ($commit in $commits ) {
90- $result = Invoke-RestMethod @RequestParams - Uri " https://api.github.com/search/issues?q=$ ( $commit ) is%3Amerged"
87+ $result = Invoke-RestMethod @RequestParams - Uri " https://api.github.com/search/issues?q=$ ( $commit ) + is%3Amerged+is%3Apr "
9188 if ($result.total_count -gt 0 ) {
9289 $prs += $result.items | Sort-Object - Property score - Descending | Select-Object - First 1
9390 }
Original file line number Diff line number Diff line change 1+ # Release notes for v0.6.1:
2+ - ### Files in subfolders are not being added when -Match is used (#104 ) by @nvarscar
3+ ------
4+ * Folders are no longer filtered out by the -Match regex string
15# Release notes for v0.6.0:
26- ### Adding prescripts and postscripts (#91 ) by @nvarscar
37 ------
You can’t perform that action at this time.
0 commit comments