Add graceful fallback to identical response validation when more than F+1 matching responses required #49966
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: CI ProtoBuf | |
| on: | |
| pull_request: | |
| jobs: | |
| buf-breaking: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - name: Setup buf | |
| uses: bufbuild/buf-setup-action@a47c93e0b1648d5651a065437926377d060baa99 # v1.50.0 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Run buf breaking | |
| uses: bufbuild/buf-breaking-action@c57b3d842a5c3f3b454756ef65305a50a587c5ba # v1.1.4 | |
| env: | |
| REPO_URL: https://github.com/${{ github.repository }} | |
| BASE_BRANCH: ${{ github.base_ref }} | |
| with: | |
| against: "${REPO_URL}.git#branch=${BASE_BRANCH}" |