Empty commit to record that commit 0c8151e (fixes #234) #444
This file contains 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: Generate and upload SARIF file | |
on: | |
pull_request: | |
push: | |
branches-ignore: | |
- 'dependabot/**' | |
schedule: | |
- cron: '30 12 * * *' | |
workflow_dispatch: | |
jobs: | |
generate-and-upload-sarif: | |
runs-on: ubuntu-latest | |
permissions: | |
security-events: write | |
steps: | |
- uses: actions/checkout@v4 | |
- run: npm install --no-package-lock | |
- run: node markdownlint-cli2.js --config .github/sarif.markdownlint-cli2.jsonc '**/README.md' '#node_modules' | |
continue-on-error: true | |
- uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: markdownlint-cli2-sarif.sarif |