[DOCS] manually update schema docs for v1.18.0 #346
Workflow file for this run
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
| --- | |
| name: Lint | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| concurrency: | |
| group: lint-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| packages: read # for reading GitHub Packages registry images used by super-linter | |
| jobs: | |
| lint: | |
| name: Super-Linter | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write # for super-linter to create issue annotations | |
| pull-requests: write # for super-linter PR summary comments | |
| statuses: write # for super-linter commit status updates | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| with: | |
| # Required for super-linter to detect changed files | |
| fetch-depth: 0 | |
| persist-credentials: false | |
| - name: Super-Linter | |
| uses: super-linter/super-linter/slim@4ce20838b8ab83717e78138c5b3a1407148e0918 # v8.7.0 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| SAVE_SUPER_LINTER_SUMMARY: true | |
| ENABLE_GITHUB_PULL_REQUEST_SUMMARY_COMMENT: true | |
| ENABLE_GITHUB_ACTIONS_STEP_SUMMARY: true | |
| VALIDATE_ALL_CODEBASE: true | |
| # Enable only Markdown (markdownlint), natural language (textlint), | |
| # and SQL (sqlfluff). Setting any VALIDATE_* to true causes all | |
| # other linters to default to false. | |
| VALIDATE_MARKDOWN: true | |
| VALIDATE_NATURAL_LANGUAGE: true | |
| NATURAL_LANGUAGE_CONFIG_FILE: .textlintrc.json # Literal path is .github/linters/.textlintrc.json | |
| VALIDATE_SQLFLUFF: true | |
| VALIDATE_JAVASCRIPT_ES: true |