From 0460d102e9053f9270cbab78293c6d6f1661f280 Mon Sep 17 00:00:00 2001 From: Dmitri Dolguikh Date: Mon, 24 Aug 2026 17:50:31 +0200 Subject: [PATCH] add protobuf breaking changes check Signed-off-by: Dmitri Dolguikh --- .github/workflows/buf.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/buf.yml diff --git a/.github/workflows/buf.yml b/.github/workflows/buf.yml new file mode 100644 index 000000000..2e52574e2 --- /dev/null +++ b/.github/workflows/buf.yml @@ -0,0 +1,22 @@ +name: protobuf checks +on: + push: + paths: + - '**.proto' +permissions: + contents: read + pull-requests: read +jobs: + buf: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + with: + persist-credentials: false + - uses: bufbuild/buf-action@8c6a16e16f12ba20b6470afa9c2ba9b5ba8c97c3 # v1.5.0 + with: + format: false + lint: false + push: false + archive: false