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 835bfd2 commit 8e6893cCopy full SHA for 8e6893c
tools/issue-mgmt/CloseDupIssues.ps1
@@ -60,10 +60,8 @@ If you want to remove that beta version of PSReadLine and use the 2.1.0 version
60
}
61
elseif ($title.Contains('https://github.com/PowerShell/PSReadLine/issues/new') -or
62
$body.Contains('https://github.com/PowerShell/PSReadLine/issues/new') -or
63
- $body -match 'PSReadLine: 2\.\d\.\d(-\w+)?' -or
64
- $body -match 'PSReadline version: 2\.\d\.\d(-\w+)?' -or
65
- $body -match 'PowerShell: 7\.\d\.\d' -or
66
- $body -match 'PS version: 7\.\d\.\d')
+ $body -match 'PSReadLine( version)?: (2\.[01]\.\d$)|(2\.[2-5]\.\d(-\w+)?$)' -or
+ $body -match '(PowerShell|PS version): 7\.\d\.\d')
67
{
68
## The issue reported a recent version of PSReadLine, so leave it as is.
69
continue
0 commit comments