File tree 2 files changed +5
-4
lines changed
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -79,15 +79,12 @@ $gitParams = @(
79
79
' --first-parent'
80
80
" $CommitID ..$HeadCommitID "
81
81
' --format="%H"'
82
- ' --'
83
- ' .'
84
- ' ":(exclude)*.md"'
85
82
)
86
83
$commits = & git @gitParams
87
84
88
85
$prs = @ ()
89
86
foreach ($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 "
91
88
if ($result.total_count -gt 0 ) {
92
89
$prs += $result.items | Sort-Object - Property score - Descending | Select-Object - First 1
93
90
}
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
1
5
# Release notes for v0.6.0:
2
6
- ### Adding prescripts and postscripts (#91 ) by @nvarscar
3
7
------
You can’t perform that action at this time.
0 commit comments