Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions .github/workflows/clean-up-unused-images.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# 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.

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:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/spellcheck-report.yaml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/url-checks.yaml
Original file line number Diff line number Diff line change
@@ -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:


Expand Down
3 changes: 2 additions & 1 deletion linkinator/linkinator-ci.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
3 changes: 2 additions & 1 deletion linkinator/linkinator-rate-limit-ci.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
3 changes: 2 additions & 1 deletion linkinator/linkinator-rate-limit.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
3 changes: 2 additions & 1 deletion linkinator/linkinator.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
3 changes: 2 additions & 1 deletion scripts/url-checker-developer-portals.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down