Skip to content

fix: terraform plan-diff respects metadata.component and workdir #206

fix: terraform plan-diff respects metadata.component and workdir

fix: terraform plan-diff respects metadata.component and workdir #206

Workflow file for this run

name: Link Check
on:
pull_request:
paths:
- '**.md'
- '!website/**'
- 'lychee.toml'
push:
branches: [main]
paths:
- '**.md'
- '!website/**'
- 'lychee.toml'
workflow_dispatch:
jobs:
link-check:
name: Check Markdown Links
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Check links with lychee
uses: lycheeverse/lychee-action@v2
with:
args: --config lychee.toml --root-dir ${{ github.workspace }} '**/*.md'
fail: true
jobSummary: true
token: ${{ secrets.GITHUB_TOKEN }}