mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
a6763210c4
Bumps [gaurav-nelson/github-action-markdown-link-check](https://github.com/gaurav-nelson/github-action-markdown-link-check) from 1.0.13 to 1.0.14.
- [Release notes](https://github.com/gaurav-nelson/github-action-markdown-link-check/releases)
- [Commits](9710f0fec8...58f84fd654
)
---
updated-dependencies:
- dependency-name: gaurav-nelson/github-action-markdown-link-check
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
27 lines
783 B
YAML
27 lines
783 B
YAML
name: Check for bad links in documentation
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
# Only run on changes to .md files -- this check is too flakey to run on every PR
|
|
- '**.md'
|
|
workflow_dispatch: # Manual
|
|
schedule:
|
|
- cron: '0 6 * * *' # Nightly 6AM UTC
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
markdown-link-check:
|
|
permissions:
|
|
contents: read # to read files to check dead links
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@61b9e3751b92087fd0b06925ba6dd6314e06f089 # master
|
|
- uses: gaurav-nelson/github-action-markdown-link-check@58f84fd654812d0d8da4e4d4a559eda087daf8ce # v1.0.13
|
|
with:
|
|
use-quiet-mode: 'yes'
|
|
config-file: .github/workflows/markdown-link-check-config.json
|
|
base-branch: ${{ github.base_ref }}
|