feat: microsoft_security
and microsoft_security_query
data sources in microsoft
plugin
#250
Workflow file for this run
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: docs | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- '**.md' | |
pull_request: | |
paths: | |
- '**.md' | |
workflow_dispatch: | |
concurrency: | |
group: docs-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
# https://github.com/igorshubovych/markdownlint-cli | |
markdownlint-cli: | |
if: github.event_name != 'pull_request' || !github.event.pull_request.draft | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: nosborn/[email protected] | |
with: | |
files: '**/*.md' | |
config_file: .markdownlint.yaml | |
dot: true | |
# https://github.com/errata-ai/vale-action | |
vale: | |
if: github.event_name != 'pull_request' || !github.event.pull_request.draft | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: errata-ai/vale-action@reviewdog | |
with: | |
fail_on_error: true | |
vale_flags: "--glob='**/*.md'" | |