feat: CR safeguards, throttle CRD creation, adding limit #2093
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: Lint | |
| "on": | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - '*' | |
| workflow_dispatch: {} | |
| permissions: | |
| checks: write | |
| contents: read | |
| jobs: | |
| checks: | |
| name: Checks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v6 | |
| - name: Set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: 'go.mod' | |
| - name: Run make crds deepcopy lint-fix | |
| run: make crds deepcopy lint-fix | |
| - name: Check for diff | |
| run: | | |
| set -e | |
| if ! git diff --exit-code; then | |
| echo "::error::Generated files are out of date. Run 'make crds deepcopy lint-fix' and commit the changes." | |
| exit 1 | |
| fi | |
| if git ls-files --others --exclude-standard | grep -q .; then | |
| echo "::error::Untracked files after generation:" | |
| git ls-files --others --exclude-standard | |
| exit 1 | |
| fi | |
| - name: Run golangci-lint | |
| run: | | |
| set -eux | |
| make lint |