Link Checker [Anaconda, Linux] #1169
Workflow file for this run
This file contains hidden or 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: Link Checker [Anaconda, Linux] | |
on: | |
schedule: | |
# UTC 23:00 is early morning in Australia (9am) | |
- cron: '0 23 * * 1' | |
workflow_dispatch: | |
jobs: | |
link-checking: | |
name: QuantEcon AI link checking | |
runs-on: "ubuntu-latest" | |
permissions: | |
issues: write # required for QuantEcon link-checker | |
steps: | |
# Checkout the live site (html) | |
- name: Checkout | |
uses: actions/checkout@v5 | |
with: | |
ref: gh-pages | |
- name: AI-Powered Link Checker | |
uses: QuantEcon/meta/.github/actions/link-checker@main | |
with: | |
html-path: '.' # gh-pages live html | |
fail-on-broken: 'false' | |
silent-codes: '403,503' | |
ai-suggestions: 'true' | |
create-issue: 'true' | |