update: Upgrade Karpenter to 0.32.x and use v1beta1 APIs #981
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: Markdownlint | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- website/** | |
permissions: | |
contents: read | |
pull-requests: write | |
jobs: | |
markdownlint-cli: | |
name: markdownlint-cli | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: markdownlint-github-pr-review | |
uses: reviewdog/action-markdownlint@v0 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
filter_mode: nofilter | |
reporter: github-check | |
markdownlint_flags: website/docs/**/*.md |