Skip to content

Setting csi controller plugin hostNetwork for data replication seperation #775

Setting csi controller plugin hostNetwork for data replication seperation

Setting csi controller plugin hostNetwork for data replication seperation #775

---
name: verify-generated
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request:
branches: ['*']
paths:
- hack/**
- Makefile
- config/**
- go.mod
- api/go.mod
jobs:
csi-images-manifest:
name: verify-generated-changes
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache-dependency-path: |
./go.sum
api/go.sum
- name: Verify go deps
run: make godeps-verify
- name: Verify bundle
run: |
make bundle
msg='Uncommitted bundle changes. Run `make bundle` and commit results.'
git diff --exit-code bundle || (echo -e '\e[31m'"$msg"; exit 1)