Skip to content

feat(markdownlint): Refactor workflow inputs #140

feat(markdownlint): Refactor workflow inputs

feat(markdownlint): Refactor workflow inputs #140

Workflow file for this run

---
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Lint
on:
workflow_dispatch: {}
pull_request: {}
jobs:
actionlint:
uses: ./.github/workflows/reusable-actionlint.yaml
secrets: inherit
with:
config-file: ./.github/configs/actionlint.yaml
yamllint:
uses: ./.github/workflows/reusable-yamllint.yaml
secrets: inherit
with:
yamllint-args: "--config-file=.yamllint.yaml"
shellcheck:
uses: ./.github/workflows/reusable-shellcheck.yaml
secrets: inherit
markdownlint:
uses: ./.github/workflows/reusable-markdownlint.yaml
secrets: inherit
with:
config-file: .github/configs/.markdownlint.yaml
commitlint:
uses: ./.github/workflows/reusable-commitlint.yaml
secrets: inherit
with:
commitlint-version: "v19.5.0"