Skip to content

chore(deps): update commitlint monorepo to v19 (major) #23

chore(deps): update commitlint monorepo to v19 (major)

chore(deps): update commitlint monorepo to v19 (major) #23

Workflow file for this run

name: 'Checks'
on:
pull_request:
branches:
- main
concurrency:
group: checks-${{ github.ref }}
cancel-in-progress: true
jobs:
changed:
runs-on: ubuntu-22.04
permissions:
contents: read
pull-requests: read
outputs:
actions: ${{ steps.changes.outputs.actions }}
steps:
# https://github.com/marketplace/actions/checkout
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
# https://github.com/marketplace/actions/paths-changes-filter
- name: Paths Changes Filter
uses: dorny/paths-filter@ebc4d7e9ebcb0b1eb21480bb8f43113e996ac77a # v3.0.1
id: changes
with:
filters: |
actions:
- '.github/workflows/*.yml'
check-actions:
runs-on: ubuntu-22.04
needs: changed
if: needs.changed.outputs.actions == 'true'
timeout-minutes: 10
steps:
# https://github.com/marketplace/actions/checkout
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
# https://github.com/marketplace/actions/actionlint-with-reviewdog
- uses: reviewdog/action-actionlint@b0a6aebe1d2191decc9b4f022cdfc248b702477d # v1.42.0
with:
fail_on_error: true
filter_mode: nofilter
level: error
reporter: github-pr-review
status-check:
runs-on: ubuntu-22.04
needs:
- check-actions
permissions: { }
if: failure()
steps:
- run: exit 1