Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions .github/workflows/buf-breaking.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Detects breaking changes in protobuf files using buf.
# This check can be bypassed by adding the 'breaking-api-change' label to the PR.
# For more info: https://buf.build/docs/bsr/ci-cd/github-actions/

name: Protobuf

on:
pull_request:
branches: ['main', 'release/**']
types: [opened, synchronize, reopened, labeled, unlabeled]
paths:
- 'api/**/*.proto'
- 'api/buf.yaml'

permissions:
contents: read
pull-requests: read

jobs:
breaking:
name: Detect breaking API changes
runs-on: ubuntu-latest
timeout-minutes: 10

steps:
- uses: actions/checkout@v6
- uses: bufbuild/buf-action@v1
with:
version: 1.63.0
github_token: ${{ secrets.GITHUB_TOKEN }}
input: 'api'
breaking: ${{ !contains(github.event.pull_request.labels.*.name, 'breaking-api-change') }}
lint: false
format: false
pr_comment: false
Loading