Skip to content

Commit c4ad2cd

Browse files
authored
docs: add link ignore and change time of checks (#9372)
* docs: add link ignore and change time of checks * docs: update time
1 parent 1576f0e commit c4ad2cd

File tree

8 files changed

+19
-14
lines changed

8 files changed

+19
-14
lines changed

.github/workflows/clean-up-unused-images.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# This workflow removed unused images from the repository and creates a PR to clean them up.
2-
# The workflow runs on the first day of every month at 2 am UTC.
2+
# The workflow runs on the first day of every month at 12PM UTC.
33
# Any image that is not referenced in the repository is considered unused.
44
# This workflow supports on-demand execution using the workflow_dispatch event.
55

66
name: Clean Up Unused Images
77

88
on:
99
schedule:
10-
# On the first of every month at 2 am
11-
- cron: '0 2 1 * *'
10+
# On the first of every month at 12 PM UTC
11+
- cron: '0 12 1 * *'
1212
workflow_dispatch:
1313

1414
concurrency:

.github/workflows/spellcheck-report.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# This workflow runs the set of core vale checks on the entire repo.
2-
# The workflow runs every Monday at 8 am UTC.
2+
# The workflow runs every Monday at 4PM UTC.
33
# This workflow supports on-demand execution using the workflow_dispatch event.
44

55
name: Spellcheck Entire Librarium
66
on:
77
schedule:
8-
# Every Monday at 8AM UTC
9-
- cron: '0 8 * * 1'
8+
# Every Monday at 4PM UTC
9+
- cron: '0 16 * * 1'
1010
workflow_dispatch:
1111

1212
concurrency:

.github/workflows/url-checks.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# This workflow scans the markdown files in the repository for broken URLs.
22
# 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.
3-
# The workflow is scheduled to run every Monday at 6 am.
3+
# The workflow is scheduled to run every Monday at 2PM UTC.
44

55
on:
66
schedule:
7-
# Every Monday at 6 am
8-
- cron: '0 6 * * 1'
7+
# Every Monday at 2PM UTC
8+
- cron: '0 14 * * 1'
99
workflow_dispatch:
1010

1111

linkinator/linkinator-ci.config.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@
2828
"^https://socket.dev.*$$",
2929
"^https://www.freedesktop.org.*$$",
3030
"^https://docs.openstack.org.*$$",
31-
"^https://(www\\.)?upwind\\.io.*$$"
31+
"^https://(www\\.)?upwind\\.io.*$$",
32+
"^https://(www\\.)?wiz\\.io.*$$"
3233
],
3334
"verbosity": "error",
3435
"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"

linkinator/linkinator-rate-limit-ci.config.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@
2828
"^https://socket.dev.*$$",
2929
"^https://www.freedesktop.org.*$$",
3030
"^https://docs.openstack.org.*$$",
31-
"^https://(www\\.)?upwind\\.io.*$$"
31+
"^https://(www\\.)?upwind\\.io.*$$",
32+
"^https://(www\\.)?wiz\\.io.*$$"
3233
],
3334
"verbosity": "error",
3435
"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"

linkinator/linkinator-rate-limit.config.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@
2929
"^https://socket.dev.*$$",
3030
"^https://www.freedesktop.org.*$$",
3131
"^https://docs.openstack.org.*$$",
32-
"^https://(www\\.)?upwind\\.io.*$$"
32+
"^https://(www\\.)?upwind\\.io.*$$",
33+
"^https://(www\\.)?wiz\\.io.*$$"
3334
],
3435
"verbosity": "error",
3536
"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"

linkinator/linkinator.config.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@
2828
"^https://socket.dev.*$$",
2929
"^https://www.freedesktop.org.*$$",
3030
"^https://docs.openstack.org.*$$",
31-
"^https://(www\\.)?upwind\\.io.*$$"
31+
"^https://(www\\.)?upwind\\.io.*$$",
32+
"^https://(www\\.)?wiz\\.io.*$$"
3233
],
3334
"verbosity": "error",
3435
"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"

scripts/url-checker-developer-portals.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ DEVELOPER_PORTAL_LINKS=(
1414
"socket\.dev",
1515
"www\.freedesktop\.org",
1616
"docs\.openstack\.org",
17-
"upwind\.io"
17+
"upwind\.io",
18+
"wiz\.io",
1819
)
1920
LINKS_FILE="all_links.txt"
2021
BROKEN_LINKS_FILE="link_report_developer_portals.txt"

0 commit comments

Comments
 (0)