Skip to content

External Links

External Links #90

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: Install npm
uses: actions/setup-node@v2
with:
node-version: '20'
- name: Run hugo
run: bash -x ./install-and-build.sh
- 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