mirror of
https://github.com/deviantony/docker-elk.git
synced 2025-12-12 01:40:29 +01:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
34 lines
728 B
YAML
34 lines
728 B
YAML
name: Documentation
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 * * 0' # At 00:00 every Sunday
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
|
|
markdown-check:
|
|
name: Check Markdown
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
|
|
- name: Check links
|
|
uses: UmbrellaDocs/action-linkspector@v1
|
|
with:
|
|
config_file: .github/workflows/lint/linkspector.yml
|
|
fail_on_error: 'true'
|
|
filter_mode: nofilter
|
|
|
|
- name: Lint
|
|
uses: DavidAnson/markdownlint-cli2-action@v21
|
|
with:
|
|
config: .github/workflows/lint/rules.markdownlint.yml
|
|
globs: |
|
|
**/*.md
|
|
!.github/ISSUE_TEMPLATE/*.md
|