docs: fix bbr notes (backport #4002) #4578
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 | |
on: | |
pull_request: | |
jobs: | |
proto-lint: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: proto-lint | |
run: make proto-lint | |
proto-gen: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "Check protobuf generated code matches committed code" | |
# yamllint disable | |
run: | | |
set -euo pipefail | |
make proto-gen | |
if ! git diff --stat --exit-code ; then | |
echo ">> ERROR:" | |
echo ">>" | |
echo ">> Protobuf generated code requires update (either tools or .proto files may have changed)." | |
echo ">> Ensure your tools are up-to-date, re-run 'make proto-gen' and update this PR." | |
echo ">>" | |
exit 1 | |
fi | |
# yamllint enable | |
proto-check-breaking: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: proto-check-breaking | |
run: make proto-check-breaking |