build(deps): bump k8s.io/apimachinery from 0.36.4 to 0.37.0 #165
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: PR Validation | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - edited | |
| - synchronize | |
| - reopened | |
| jobs: | |
| pr-validation: | |
| if: github.actor != 'dependabot[bot]' | |
| # Least privilege for the reusable workflow: it only checks out the repo, | |
| # reads PR labels and lints commit messages. Without this the job would | |
| # inherit the repository default token, which is write-scoped. | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| issues: read | |
| uses: clouddrove/github-shared-workflows/.github/workflows/pr-checks.yml@a727e4dd4e0623d88a316157c3c354bfa1c411ae |