-
Notifications
You must be signed in to change notification settings - Fork 445
36 lines (29 loc) · 924 Bytes
/
Copy pathcheck-tools-links.yml
File metadata and controls
36 lines (29 loc) · 924 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Check tools links
# Network-bound drift guard for tools/tools.json. Pings each tool's primary URL
# (and homepage, as a non-fatal warning) so a maintainer pass can re-verify or
# retire entries whose upstream moved. Not part of the blocking validate gate.
on:
schedule:
- cron: "0 8 1 * *" # 08:00 UTC on the 1st of each month
workflow_dispatch: {}
permissions:
contents: read
jobs:
tools-links:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v7
with:
persist-credentials: false
- uses: actions/setup-python@v6
with:
python-version: "3.11"
- name: Check tools-catalog links
run: make tools-links
- name: Upload tools link-check report
if: always()
uses: actions/upload-artifact@v7
with:
name: tools-link-check
path: catalog/tools-link-check.json