chore(deps): update dependency ubuntu to v22 - autoclosed #358
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: "Pre-commit consistency check" | |
on: | |
workflow_dispatch: | |
pull_request: | |
concurrency: | |
group: ${{ github.head_ref }}-precommit | |
cancel-in-progress: true | |
jobs: | |
pre-commit-check: | |
name: Run pre-commit checks | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: dorny/paths-filter@v2 | |
id: filter | |
with: | |
list-files: shell | |
filters: | | |
addedOrModified: | |
- added|modified: '**' | |
# run only if changed files were detected | |
- name: Run against changes | |
uses: pre-commit/action@v3.0.0 | |
if: steps.filter.outputs.addedOrModified == 'true' | |
with: | |
extra_args: --files ${{ steps.filter.outputs.addedOrModified_files }} | |
# run if no changed files were detected (e.g. workflow_dispatch on master branch) | |
- name: Run against all files | |
uses: pre-commit/action@v3.0.0 | |
if: steps.filter.outputs.addedOrModified != 'true' | |
with: | |
extra_args: --all-files |