mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-09-18 07:53:06 +00:00
22 lines
450 B
YAML
22 lines
450 B
YAML
name: Link Checker
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 2 * * *' # daily at 2 AM UTC
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
linkChecker:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Run lychee link checker
|
|
uses: lycheeverse/lychee-action@v2.0.2
|
|
continue-on-error: true
|
|
with:
|
|
args: >
|
|
--verbose
|
|
--retry-wait-time 10
|
|
--max-retries 3
|
|
README.md
|