🌱 Update github-actions group (minor) #829
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: Verify Pull Request | |
| on: # yamllint disable-line rule:truthy | |
| pull_request_target: | |
| types: [opened, edited, synchronize, reopened, ready_for_review] | |
| # yamllint disable rule:line-length | |
| jobs: | |
| pr-verify: | |
| runs-on: ubuntu-latest | |
| name: Verify Pull Request | |
| if: github.event_name != 'pull_request' || !github.event.pull_request.draft | |
| steps: | |
| - name: Verifier action | |
| id: verifier | |
| uses: kubernetes-sigs/kubebuilder-release-tools@012269a88fa4c034a0acf1ba84c26b195c0dbab4 # v0.4.3 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Checkout repository | |
| uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| - name: Verify Shellcheck | |
| run: make verify-shellcheck |