Skip to content

Update DCO instructions #5

Update DCO instructions

Update DCO instructions #5

Workflow file for this run

name: Lint
on:
merge_group:
types: [checks_requested]
pull_request:
push:
branches: ["master"]
concurrency:
group: ci-${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
markdown-lint:
name: markdown-lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
# lint only changed files
- uses: tj-actions/changed-files@v45
id: changed-files
with:
files: "**/*.md"
separator: ","
- uses: DavidAnson/markdownlint-cli2-action@v18
if: steps.changed-files.outputs.any_changed == 'true'
with:
globs: ${{ steps.changed-files.outputs.all_changed_files }}
separator: ","