Skip to content

chore(deps): bump github.com/apple/swift-log from 1.6.2 to 1.6.3 #8

chore(deps): bump github.com/apple/swift-log from 1.6.2 to 1.6.3

chore(deps): bump github.com/apple/swift-log from 1.6.2 to 1.6.3 #8

name: Check Conventional Commits
on:
pull_request:
branches: [main]
jobs:
commitlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install commitlint
run: |
npm install -g commitlint@latest @commitlint/config-conventional
- name: Validate PR commits with commitlint
if: github.event_name == 'pull_request'
run: npx commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true