refactor(source): remove upsert_avro_primary_key
and separate extracting columns and bind pk
#2807
Workflow file for this run
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' |