CCM-23022: Switching sts session arn to IAM role arn in KMS key policy as sessions with wildcards are unsupported #395
Workflow file for this run
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: "4. PR Title Check" | |
| on: | |
| pull_request: | |
| types: [opened, reopened, synchronize, edited] | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| jobs: | |
| check-pr-title: | |
| name: "Check PR title" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: "Checkout code" | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - name: "Check PR title format" | |
| uses: ./.github/actions/check-pr-title-format | |
| with: | |
| title: ${{ github.event.pull_request.title }} |