Skip to content

docs: add subprojects governance and lifecycle details (#107) #103

docs: add subprojects governance and lifecycle details (#107)

docs: add subprojects governance and lifecycle details (#107) #103

Workflow file for this run

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 }}'