Skip to content

Commit

Permalink
no oculus
Browse files Browse the repository at this point in the history
  • Loading branch information
tunisiano187 committed May 17, 2024
1 parent 48b41cb commit dceaf7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/looknewer.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ if((Get-GitHubIssue -OwnerName $Owner -RepositoryName $Repository -State Open |
foreach ($issue in $issues) {
$search = $issue.Title.split(' ')[-1]
"Checking $search"
if(!((Get-GitHubIssue -OwnerName $Owner -RepositoryName $Repository | Where-Object {$_.title -match "($search)"} | Where-Object {$_.created -lt $((Get-Date).AddDays(-90))})) -and (!((Get-Content .\tools\Check\exclude.txt | Select-String -Pattern $search).Matches.Success)) -AND (!(Test-Path "automatic/$search"))) {
if(!((Get-GitHubIssue -OwnerName $Owner -RepositoryName $Repository | Where-Object {$_.title -match "($search)"} | Where-Object {$_.created -lt $((Get-Date).AddDays(-90))})) -and (!((Get-Content .\tools\Check\exclude.txt | Where-Object {$_.href -notmatch "https://github.com/chocolatey-community/chocolatey-package-requests/issues/683"} | Select-String -Pattern $search).Matches.Success)) -AND (!(Test-Path "automatic/$search"))) {
$link = "[$($search)](https://github.com/chocolatey-community/chocolatey-package-requests/issues/$($issue.number))"
$link
if (!(Get-GitHubIssue -OwnerName $Owner -RepositoryName $Repository -State Open -Label "-Waiting_maintainer_answer")) {
Expand Down

0 comments on commit dceaf7f

Please sign in to comment.