mirror of
https://github.com/awesome-selfhosted/awesome-selfhosted-data.git
synced 2026-03-11 08:55:24 +00:00
22 lines
435 B
YAML
22 lines
435 B
YAML
name: dead links
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '22 22 * * *'
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
|
|
|
|
concurrency:
|
|
group: dead-links-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
check-dead-links:
|
|
if: github.repository == 'awesome-selfhosted/awesome-selfhosted-data'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: make install
|
|
- run: make url_check
|