Add image template functions docs for EC v3 #207
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
| # Run Vale linter only on changed docs when a PR is opened or updated against main. | |
| name: Vale PR review | |
| on: | |
| pull_request: | |
| branches: [main] | |
| types: [opened, synchronize] | |
| jobs: | |
| vale: | |
| name: Vale | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Get changed doc files | |
| id: changed | |
| uses: tj-actions/changed-files@v47 | |
| with: | |
| files: | | |
| docs/**/*.md | |
| docs/**/*.mdx | |
| files_ignore: | | |
| docs/reference/kots-cli-* | |
| docs/reference/replicated-cli-* | |
| docs/reference/notifications-* | |
| docs/release-notes/rn-* | |
| separator: " " | |
| - name: Run Vale on changed files | |
| if: steps.changed.outputs.all_changed_files_count != '0' | |
| uses: errata-ai/vale-action@v2 | |
| with: | |
| files: ${{ steps.changed.outputs.all_changed_files }} | |
| separator: " " | |
| fail_on_error: false | |
| reporter: github-pr-review |