🌱 (fix): Experimental E2E Upgrade does breaks up we do a release when breaking changes on experimental features are merged #2757
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: crd-diff | |
| on: | |
| pull_request: | |
| jobs: | |
| crd-diff: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: go.mod | |
| - name: Run make verify-crd-compatibility | |
| run: | | |
| make verify-crd-compatibility \ | |
| CRD_DIFF_ORIGINAL_REF="git://${{ github.event.pull_request.base.sha }}?path=" \ | |
| CRD_DIFF_UPDATED_REF="git://${{ github.event.pull_request.head.sha }}?path=" |