Skip to content

build(deps): Bump org.apache.maven.plugins:maven-failsafe-plugin from 3.1.2 to 3.2.1 #233

build(deps): Bump org.apache.maven.plugins:maven-failsafe-plugin from 3.1.2 to 3.2.1

build(deps): Bump org.apache.maven.plugins:maven-failsafe-plugin from 3.1.2 to 3.2.1 #233

Workflow file for this run

name: Conventional Commits
permissions: {}
on:
pull_request:
branches: ["main", "release-*"]
concurrency:
group: commit-lint-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
commits:
strategy:
matrix:
os: [ubuntu-22.04]
node: ["20"]
runs-on: ${{ matrix.os }}
timeout-minutes: 5
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
with:
fetch-depth: 0
- uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
with:
node-version: ${{ matrix.node }}
- name: Install commitlint
run: npm install -g @commitlint/cli @commitlint/config-conventional
- name: Verify conventional commits
run: npx commitlint --from ${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }} --to ${{ github.event.pull_request.head.sha }} --verbose