Skip to content

Commit

Permalink
Remark config: skip select PEAR URLs
Browse files Browse the repository at this point in the history
Looks like PEAR has added some type of rate limiting/DDOS protected which causes the check against dead URLs to fail due to time-outs.

Let's skip the typical user and bug report URLs for now to allow the builds to pass.
  • Loading branch information
jrfnl committed Sep 29, 2024
1 parent a57d5f9 commit c7a0f5a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .remarkrc
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
{
"skipUrlPatterns": [
"^https?://github\\.com/PHPCSStandards/PHP_CodeSniffer/compare/[0-9\\.]+?\\.{3}[0-9\\.]+",
"^https?://github\\.com/[A-Za-z0-9-]+"
"^https?://github\\.com/[A-Za-z0-9-]+",
"^https?://pear\\.php\\.net/user/.+",
"^https?://pear\\.php\\.net/bugs/bug\\.php\\?id=[0-9]+"
]
}
],
Expand Down

0 comments on commit c7a0f5a

Please sign in to comment.