feat: add 1054.889 and 1055.889 changelog #228
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
| on: [push, pull_request] | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: tj-actions/changed-files@v42 | |
| id: changed-files | |
| with: | |
| files: 'docs/*.md' | |
| separator: "," | |
| - uses: DavidAnson/markdownlint-cli2-action@v15 | |
| if: steps.changed-files.outputs.any_changed == 'true' | |
| with: | |
| config: 'config/.markdownlint.json' | |
| globs: ${{ steps.changed-files.outputs.all_changed_files }} | |
| separator: "," |