Check Links #573
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check Links | |
on: | |
workflow_dispatch: {} | |
schedule: | |
- cron: "00 18 * * *" | |
jobs: | |
check-links: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone the repo | |
uses: actions/checkout@v4 | |
- name: Download earthly | |
run: "sudo /bin/sh -c 'wget https://github.com/earthly/earthly/releases/download/'${version}'/earthly-linux-amd64 -O /usr/local/bin/earthly && chmod +x /usr/local/bin/earthly'" | |
env: | |
version: v0.8.3 | |
- name: Check for broken links | |
run: earthly --ci +lint-lychee | |
env: | |
EARTHLY_SECRETS: ${{ secrets.EARTHLY_SECRETS }} | |
# FIXME: Move logic to earthly. | |
- name: Create issue from lychee output 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 |