Benchmark performance 2026 #3567
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: Changelog verification | |
| permissions: | |
| contents: read | |
| id-token: write | |
| on: | |
| pull_request: | |
| types: [ opened, synchronize, reopened, labeled, unlabeled ] | |
| branches: | |
| - main | |
| - '*-main' | |
| merge_group: | |
| types: [checks_requested] | |
| jobs: | |
| changelog-verification: | |
| runs-on: ubuntu-latest | |
| # no changelogs for merge queues or Dependabot version bumps | |
| if: ${{ github.event_name != 'merge_group' && github.event.pull_request.user.login != 'dependabot[bot]' }} | |
| steps: | |
| - name: Configure AWS Credentials | |
| uses: aws-actions/configure-aws-credentials@v4 | |
| with: | |
| role-to-assume: ${{ secrets.CI_AWS_ROLE_ARN }} | |
| aws-region: us-west-2 | |
| - name: Verify changelog | |
| uses: aws/aws-kotlin-repo-tools/.github/actions/changelog-verification@main |