Skip to content

build(deps): Bump aws.java.sdk.version from 2.42.23 to 2.42.28 #1460

build(deps): Bump aws.java.sdk.version from 2.42.23 to 2.42.28

build(deps): Bump aws.java.sdk.version from 2.42.23 to 2.42.28 #1460

Workflow file for this run

name: Conventional Commits
permissions: {}
on:
pull_request:
branches: ["main", "release-*"]
merge_group:
concurrency:
group: commit-lint-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
commits:
# dependabot won't conform with commits, keep CI checks green by ignoring this soft-check
if: ${{ !contains(github.actor, 'dependabot') }}
strategy:
matrix:
os: [ubuntu-22.04]
node: ["20"]
runs-on: ${{ matrix.os }}
timeout-minutes: 5
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
with:
fetch-depth: 0
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f
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