diff --git a/.github/workflows/clean-up-unused-images.yaml b/.github/workflows/clean-up-unused-images.yaml index ec82fd4a38..a839013585 100644 --- a/.github/workflows/clean-up-unused-images.yaml +++ b/.github/workflows/clean-up-unused-images.yaml @@ -1,5 +1,5 @@ # This workflow removed unused images from the repository and creates a PR to clean them up. -# The workflow runs on the first day of every month at 2 am UTC. +# The workflow runs on the first day of every month at 12PM UTC. # Any image that is not referenced in the repository is considered unused. # This workflow supports on-demand execution using the workflow_dispatch event. @@ -7,8 +7,8 @@ name: Clean Up Unused Images on: schedule: - # On the first of every month at 2 am - - cron: '0 2 1 * *' + # On the first of every month at 12 PM UTC + - cron: '0 12 1 * *' workflow_dispatch: concurrency: diff --git a/.github/workflows/spellcheck-report.yaml b/.github/workflows/spellcheck-report.yaml index 14d7ad60a4..8c0e4c5d43 100644 --- a/.github/workflows/spellcheck-report.yaml +++ b/.github/workflows/spellcheck-report.yaml @@ -1,12 +1,12 @@ # This workflow runs the set of core vale checks on the entire repo. -# The workflow runs every Monday at 8 am UTC. +# The workflow runs every Monday at 4PM UTC. # This workflow supports on-demand execution using the workflow_dispatch event. name: Spellcheck Entire Librarium on: schedule: - # Every Monday at 8AM UTC - - cron: '0 8 * * 1' + # Every Monday at 4PM UTC + - cron: '0 16 * * 1' workflow_dispatch: concurrency: diff --git a/.github/workflows/url-checks.yaml b/.github/workflows/url-checks.yaml index 354e23068e..27c0deab7b 100644 --- a/.github/workflows/url-checks.yaml +++ b/.github/workflows/url-checks.yaml @@ -1,11 +1,11 @@ # This workflow scans the markdown files in the repository for broken URLs. # Additional logic is added to the Make command verify-rate-limited-links-ci to check for rate-limited URLs, including guidance on what domains to ignore. -# The workflow is scheduled to run every Monday at 6 am. +# The workflow is scheduled to run every Monday at 2PM UTC. on: schedule: - # Every Monday at 6 am - - cron: '0 6 * * 1' + # Every Monday at 2PM UTC + - cron: '0 14 * * 1' workflow_dispatch: diff --git a/linkinator/linkinator-ci.config.json b/linkinator/linkinator-ci.config.json index 1fb21896ac..dcb77dbd3c 100644 --- a/linkinator/linkinator-ci.config.json +++ b/linkinator/linkinator-ci.config.json @@ -28,7 +28,8 @@ "^https://socket.dev.*$$", "^https://www.freedesktop.org.*$$", "^https://docs.openstack.org.*$$", - "^https://(www\\.)?upwind\\.io.*$$" + "^https://(www\\.)?upwind\\.io.*$$", + "^https://(www\\.)?wiz\\.io.*$$" ], "verbosity": "error", "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36" diff --git a/linkinator/linkinator-rate-limit-ci.config.json b/linkinator/linkinator-rate-limit-ci.config.json index dee19aff4a..3030a36a69 100644 --- a/linkinator/linkinator-rate-limit-ci.config.json +++ b/linkinator/linkinator-rate-limit-ci.config.json @@ -28,7 +28,8 @@ "^https://socket.dev.*$$", "^https://www.freedesktop.org.*$$", "^https://docs.openstack.org.*$$", - "^https://(www\\.)?upwind\\.io.*$$" + "^https://(www\\.)?upwind\\.io.*$$", + "^https://(www\\.)?wiz\\.io.*$$" ], "verbosity": "error", "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36" diff --git a/linkinator/linkinator-rate-limit.config.json b/linkinator/linkinator-rate-limit.config.json index 46736af927..5ef1bb0a48 100644 --- a/linkinator/linkinator-rate-limit.config.json +++ b/linkinator/linkinator-rate-limit.config.json @@ -29,7 +29,8 @@ "^https://socket.dev.*$$", "^https://www.freedesktop.org.*$$", "^https://docs.openstack.org.*$$", - "^https://(www\\.)?upwind\\.io.*$$" + "^https://(www\\.)?upwind\\.io.*$$", + "^https://(www\\.)?wiz\\.io.*$$" ], "verbosity": "error", "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36" diff --git a/linkinator/linkinator.config.json b/linkinator/linkinator.config.json index f13dfddb01..f61b4a9d0b 100644 --- a/linkinator/linkinator.config.json +++ b/linkinator/linkinator.config.json @@ -28,7 +28,8 @@ "^https://socket.dev.*$$", "^https://www.freedesktop.org.*$$", "^https://docs.openstack.org.*$$", - "^https://(www\\.)?upwind\\.io.*$$" + "^https://(www\\.)?upwind\\.io.*$$", + "^https://(www\\.)?wiz\\.io.*$$" ], "verbosity": "error", "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36" diff --git a/scripts/url-checker-developer-portals.sh b/scripts/url-checker-developer-portals.sh index c69c1765f1..17ff008400 100755 --- a/scripts/url-checker-developer-portals.sh +++ b/scripts/url-checker-developer-portals.sh @@ -14,7 +14,8 @@ DEVELOPER_PORTAL_LINKS=( "socket\.dev", "www\.freedesktop\.org", "docs\.openstack\.org", - "upwind\.io" + "upwind\.io", + "wiz\.io", ) LINKS_FILE="all_links.txt" BROKEN_LINKS_FILE="link_report_developer_portals.txt"