feat: eliminate adjacent no-op updates for agg with empty agg call #4371
This file contains 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@v2 | |
- 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' |