Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions scripts/url-checker-developer-portals.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ ACCESS_TOKEN=$ACCESS_TOKEN
DELAY=1 # seconds between requests
# Developer portal links to check with dots (.) escaped
DEVELOPER_PORTAL_LINKS=(
"developers\.redhat\.com"
"www\.intel\.com"
"github\.com"
"developers\.redhat\.com",
"www\.intel\.com",
"github\.com",
"developer\.hashicorp\.com",
"www\.packer\.io",
"www\.gnu\.org",
Expand All @@ -16,6 +16,9 @@ DEVELOPER_PORTAL_LINKS=(
"docs\.openstack\.org",
"upwind\.io",
"wiz\.io",
"linux\.die\.net",
"mysql\.com",
"dev\.mysql\.com",
)
LINKS_FILE="all_links.txt"
BROKEN_LINKS_FILE="link_report_developer_portals.txt"
Expand Down