mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2026-02-03 04:09:29 -05:00
* chore(deps): update actions/checkout action to v5 * chore: Update docs --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Martin Wentzel <nitram.wentzel@gmail.com>
28 lines
744 B
YAML
28 lines
744 B
YAML
## These checks will be superseded by documentation.yml
|
|
## when the provider documentation layout is moved to
|
|
## the Terraform Registry layout.
|
|
name: Website Checks
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- 'release/**'
|
|
pull_request:
|
|
paths:
|
|
- .github/workflows/website-link.yaml
|
|
- docs/**
|
|
- .markdownlint.yml
|
|
|
|
jobs:
|
|
markdown-link-check:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- uses: gaurav-nelson/github-action-markdown-link-check@v1
|
|
name: markdown-link-check docs/**/*.md
|
|
with:
|
|
use-quiet-mode: 'yes'
|
|
use-verbose-mode: 'yes'
|
|
config-file: '.markdownlinkcheck.json'
|
|
folder-path: 'docs'
|
|
file-extension: '.md'
|