feat(sink): Replace sink (part 1) #8131
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: Protobuf Breaking Check | |
| on: | |
| pull_request: | |
| branches: [main] | |
| paths: [proto/**] | |
| jobs: | |
| buf-breaking-check: | |
| runs-on: ubuntu-latest | |
| name: Check breaking changes in Protobuf files | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: bufbuild/buf-setup-action@v1 | |
| with: | |
| github_token: ${{ github.token }} | |
| # Run breaking change detection against the `main` branch | |
| - uses: bufbuild/buf-breaking-action@v1 | |
| with: | |
| input: 'proto' | |
| against: 'https://github.com/risingwavelabs/risingwave.git#branch=main,subdir=proto' |