Skip to content

Minor Change to lake formation admin user run book #204

Minor Change to lake formation admin user run book

Minor Change to lake formation admin user run book #204

Workflow file for this run

---
name: check for broken links
on:
pull_request:
paths:
- "source/**"
schedule:
- cron: '3 7 * * TUE'
permissions: {}
jobs:
check-links:
name: Test
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
id: checkout
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- name: Lychee
id: lychee
uses: lycheeverse/lychee-action@f81112d0d2814ded911bd23e3beaa9dda9093915 # v2.1.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
args: --verbose --no-progress './**/*.md' './**/*.html' './**/*.erb' --config config/lychee.toml
fail: true