shorten generated KMS SA name if > 30 characters (#2679) #31
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: Static checks for PRs from forks (No Approval Required) | |
| on: | |
| # unapproved runs must be on: pull_request, to prevent cache pollution on main | |
| pull_request: | |
| types: [ opened, synchronize, reopened ] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.head.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| # Note: unapproved runs must not be granted access to secrets, and must not run on self-hosted runners | |
| no_approval_static_tests: | |
| name: Static Tests | |
| uses: ./.github/workflows/build.static_tests.yml | |
| if: github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name | |
| secrets: {} # Explcitly do not grant access to secrets | |
| permissions: | |
| contents: read | |
| with: | |
| self_hosted: false | |
| commit_sha: ${{ github.event.pull_request.head.sha }} | |
| skip_todo_check: true # runs from forks with on: pull_request run in context of the fork, so issue references will be broken |