[pre-commit.ci] pre-commit autoupdate #3351
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 YAML and Shell | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
branches: | |
- main | |
env: | |
# Currently no way to detect automatically | |
DEFAULT_BRANCH: main | |
jobs: | |
build: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 | |
with: | |
fetch-depth: 0 | |
- name: Generate Token | |
uses: tibdex/github-app-token@v2 | |
id: generate-token | |
with: | |
app_id: "${{ secrets.BOT_APP_ID }}" | |
private_key: "${{ secrets.BOT_APP_PRIVATE_KEY }}" | |
- name: Lint | |
uses: github/super-linter/slim@v5 | |
env: | |
VALIDATE_ALL_CODEBASE: false | |
DEFAULT_BRANCH: "${{ env.DEFAULT_BRANCH }}" | |
GITHUB_TOKEN: "${{ steps.generate-token.outputs.token }}" | |
MARKDOWN_CONFIG_FILE: .markdownlint.yaml | |
YAML_CONFIG_FILE: .yamllint.yaml | |
KUBERNETES_KUBEVAL_OPTIONS: --ignore-missing-schemas | |
VALIDATE_NATURAL_LANGUAGE: false |