This repository has been archived by the owner on Feb 21, 2024. It is now read-only.
feat(github-release): update pre-commit hook adrienverge/yamllint to v1.35.1 #2784
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: # yamllint disable-line rule:truthy | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.ref }}-${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: MegaLinter | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # 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: MegaLinter | |
uses: oxsecurity/[email protected] | |
env: | |
GITHUB_TOKEN: "${{ steps.generate-token.outputs.token }}" | |
PRINT_ALPACA: false | |
VALIDATE_ALL_CODEBASE: ${{ github.event_name == 'workflow_dispatch' }} | |
ENABLE_LINTERS: |- | |
${{ | |
join( | |
fromJSON(' | |
[ | |
"ACTION_ACTIONLINT", | |
"ANSIBLE_ANSIBLE_LINT", | |
"COPYPASTE_JSCPD", | |
"KUBERNETES_KUBEVAL", | |
"MARKDOWN_MARKDOWNLINT", | |
"REPOSITORY_GIT_DIFF", | |
"REPOSITORY_SECRETLINT", | |
"TERRAFORM_TERRAFORM_FMT", | |
"YAML_PRETTIER", | |
"YAML_YAMLLINT" | |
] | |
'), | |
',' | |
) | |
}} | |
ANSIBLE_DIRECTORY: ansible | |
ANSIBLE_ANSIBLE_LINT_CONFIG_FILE: .ansible-lint | |
KUBERNETES_DIRECTORY: cluster | |
KUBERNETES_KUBEVAL_ARGUMENTS: --ignore-missing-schemas | |
KUBERNETES_KUBEVAL_FILTER_REGEX_INCLUDE: "(kubernetes)" | |
MARKDOWN_MARKDOWNLINT_CONFIG_FILE: .github/linters/.markdownlint.yaml | |
MARKDOWN_MARKDOWNLINT_RULES_PATH: .github/ | |
YAML_YAMLLINT_CONFIG_FILE: .github/linters/.yamllint.yaml | |
YAML_PRETTIER_CONFIG_FILE: .github/linters/.prettierrc.yaml | |
YAML_PRETTIER_FILTER_REGEX_EXCLUDE: "(.*\\.sops\\.ya?ml)" |