Skip to content

External Links

External Links #64

name: External Links
on:
repository_dispatch:
workflow_dispatch:
schedule:
- cron: "00 18 * * 0"
jobs:
linkChecker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: "latest"
- name: Run hugo
run: cd qdrant-landing && hugo -b 'https://qdrant.tech/'
- name: Link Checker
id: lychee
uses: lycheeverse/[email protected]
with:
args: 'qdrant-landing/public'
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Create Issue From File
if: env.lychee_exit_code != 0
uses: peter-evans/create-issue-from-file@v4
with:
title: Link Checker Report
content-filepath: ./lychee/out.md
labels: report, automated issue