build(deps): Bump aws.java.sdk.version from 2.42.23 to 2.42.28 #1460
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |