mirror of
https://github.com/DavidAnson/markdownlint-cli2-action.git
synced 2024-11-22 06:06:23 +01:00
6fc24c718d
Bumps [tj-actions/changed-files](https://github.com/tj-actions/changed-files) from 39 to 40. - [Release notes](https://github.com/tj-actions/changed-files/releases) - [Changelog](https://github.com/tj-actions/changed-files/blob/main/HISTORY.md) - [Commits](https://github.com/tj-actions/changed-files/compare/v39...v40) --- updated-dependencies: - dependency-name: tj-actions/changed-files dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
19 lines
485 B
YAML
19 lines
485 B
YAML
on: [push, pull_request]
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: tj-actions/changed-files@v40
|
|
id: changed-files
|
|
with:
|
|
files: '**/*.md'
|
|
separator: ","
|
|
- uses: DavidAnson/markdownlint-cli2-action@v13
|
|
if: steps.changed-files.outputs.any_changed == 'true'
|
|
with:
|
|
globs: ${{ steps.changed-files.outputs.all_changed_files }}
|
|
separator: ","
|