Skip to content

[WIP] debug InstanceProfileCredentialsProvider usage #891

[WIP] debug InstanceProfileCredentialsProvider usage

[WIP] debug InstanceProfileCredentialsProvider usage #891

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:
strategy:
matrix:
os: [ubuntu-22.04]
node: ["20"]
runs-on: ${{ matrix.os }}
timeout-minutes: 5
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with:
fetch-depth: 0
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af
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