feat: add option to allow user format the version from path in grape #1660
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: Markdown Lint Check | |
| on: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| markdownlint-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| # equivalent cli: markdownlint-cli2 "**/*.md" "#**/CHANGELOG.md" --config .markdownlint.json | |
| - name: "Markdown Lint Check" | |
| uses: DavidAnson/markdownlint-cli2-action@v20 | |
| continue-on-error: true | |
| with: | |
| fix: false | |
| globs: | | |
| **/*.md | |
| !**/CHANGELOG.md |