docs: expand community membership with CNCF and governance processes #61
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v5 | |
with: | |
fetch-depth: 1 | |
- name: Get changed markdown files | |
id: changed-files | |
uses: tj-actions/changed-files@v46 | |
with: | |
files: | | |
**/*.md | |
- name: Markdown lint | |
uses: docker://avtodev/markdown-lint:v1 | |
with: | |
config: '.markdownlint.yml' | |
args: '${{ steps.changed-files.outputs.all_changed_files }}' |