gomod(deps): bump github.com/aws/aws-sdk-go-v2/credentials from 1.19.9 to 1.19.10 #12867
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: All checks passed | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| - ready_for_review | |
| - edited | |
| - labeled | |
| - unlabeled | |
| jobs: | |
| checks-passed: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| checks: read | |
| contents: read | |
| steps: | |
| - name: Check if draft | |
| if: ${{ github.event.pull_request.draft }} | |
| run: | | |
| echo "Draft PRs are not checked" | |
| exit 1 | |
| - name: Check if author is kyma-gopher-bot | |
| if: ${{ github.event.pull_request.user.login == 'kyma-gopher-bot' }} | |
| run: | | |
| echo "PRs from kyma-gopher-bot are automatically green" | |
| exit 0 | |
| - uses: wechuli/allcheckspassed@1d00cf0c34c4b0805db8866d8913f22e7125301e | |
| if: ${{ github.event.pull_request.user.login != 'kyma-gopher-bot' }} | |
| with: | |
| delay: '1' | |
| retries: '15' | |
| polling_interval: '1' | |
| checks_exclude: 'markdown-link-check,enable-auto-merge,run-govulncheck,scan' | |
| verbose: true |