Skip to content

[lqramsey] Fix calculation of H #951

[lqramsey] Fix calculation of H

[lqramsey] Fix calculation of H #951

Workflow file for this run

name: Link Checker [Anaconda, Linux]
on:
schedule:
# UTC 23:00 is early morning in Australia (9am) every Sunday
- cron: '0 23 * * 0'
workflow_dispatch:
jobs:
link-checking:
name: Link Checking
runs-on: "ubuntu-latest"
permissions:
issues: write # required for peter-evans/create-issue-from-file
steps:
# Checkout the live site (html)
- name: Checkout
uses: actions/checkout@v5
with:
ref: gh-pages
- name: Link Checker
id: lychee
uses: lycheeverse/lychee-action@v2
with:
fail: false
# Configuration is now specified in lychee.toml file
args: **/*.html

Check failure on line 25 in .github/workflows/linkcheck.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/linkcheck.yml

Invalid workflow file

You have an error in your yaml syntax on line 25
- name: Create Issue From File
if: steps.lychee.outputs.exit_code != 0
uses: peter-evans/create-issue-from-file@v5
with:
title: Link Checker Report
content-filepath: ./lychee/out.md
labels: report, automated issue, linkchecker