Skip to content

chore(deps): bump astral-sh/setup-uv from 6 to 7 #930

chore(deps): bump astral-sh/setup-uv from 6 to 7

chore(deps): bump astral-sh/setup-uv from 6 to 7 #930

name: Check pull requests
on:
push:
branches-ignore: # Run the checks on all branches but the protected ones
- main
- release/*
pull_request:
branches:
- main
- release/*
types:
- opened
- edited
- reopened
- ready_for_review
permissions:
contents: read
jobs:
check-conventional-commits:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
sparse-checkout: |
.github
- if: ${{ github.event_name == 'pull_request' }}
run: |
set -ex
node .github/workflows/conventional-commits-lint.js pr <<EOF
${{ toJSON(github.event) }}
EOF
- if: ${{ github.event_name == 'push' }}
run: |
set -ex
node .github/workflows/conventional-commits-lint.js push <<EOF
${{ toJSON(github.event) }}
EOF