feat: add warning about deploying external charts in airgapped environments #142
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: Lint | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "platform/**/*.mdx" | |
- "platform/**/*.md" | |
- "vcluster/**/*.mdx" | |
- "vcluster/**/*.md" | |
- "vcluster_versioned_docs/**/*.mdx" | |
- "vcluster_versioned_docs/**/*.md" | |
- .github/workflows/reviewdog.yaml | |
- "*.md" | |
permissions: | |
pull-requests: write | |
jobs: | |
markdownlint: | |
name: runner / markdownlint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: markdownlint | |
uses: reviewdog/action-markdownlint@v0 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
reporter: github-pr-review | |
misspell: | |
name: runner / misspell | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v4 | |
- name: Run Misspell with Reviewdog | |
uses: reviewdog/action-misspell@v1 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
reporter: github-pr-review | |
vale: | |
name: runner / vale | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v4 | |
- name: Get changed files | |
id: changed-files | |
uses: tj-actions/changed-files@v45 | |
with: | |
base_sha: ${{ github.event.pull_request.base.sha }} | |
sha: ${{ github.event.pull_request.head.sha }} | |
separator: "," | |
files: | | |
platform/**/*.mdx | |
platform/**/*.md | |
vcluster/**/*.mdx | |
vcluster/**/*.md | |
vcluster_versioned_docs/**/*.mdx | |
vcluster_versioned_docs/**/*.md | |
- name: Install venv for vale on ubuntu latest | |
if: steps.changed-files.outputs.all_changed_files != '' | |
run: | | |
venv="$HOME/.local/share/venv" | |
python3 -m venv "$venv" | |
echo "$venv/bin" >> $GITHUB_PATH | |
- name: Run Vale with Reviewdog | |
uses: errata-ai/vale-action@reviewdog | |
if: steps.changed-files.outputs.all_changed_files != '' | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
fail_on_error: true | |
reporter: github-pr-review | |
version: 3.7.1 | |
files: ${{ steps.changed-files.outputs.all_changed_files }} | |
separator: "," | |
filter_mode: file |