This repository has been archived by the owner on Dec 12, 2023. It is now read-only.
chore(deps): update container image postgres to v15.4 - autoclosed #1336
Workflow file for this run
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 files on Pull Requests | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
paths: | |
- "**.yaml" | |
- "**.yml" | |
jobs: | |
yamllint: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Get changes | |
uses: dorny/paths-filter@v2 | |
id: filter | |
with: | |
list-files: shell | |
filters: | | |
yaml: | |
- added|modified: "**.yaml" | |
- added|modified: "**.yml" | |
- name: Lint files | |
if: ${{ steps.filter.outputs.yaml == 'true' }} | |
uses: reviewdog/action-yamllint@v1 | |
with: | |
yamllint_flags: "-c .github/lint/.yamllint.yaml ${{ steps.filter.outputs.yaml_files }}" |