mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-07-01 17:17:28 -04:00
16 lines
292 B
YAML
16 lines
292 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
|
|
- uses: lycheeverse/lychee-action@v1.9.1
|
|
with:
|
|
args: --verbose README.md
|