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
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,10 @@ jobs:
- name: Lint
run: buf lint

- name: Fetch main branch for comparison
if: github.event_name == 'pull_request'
run: git fetch origin main

- name: Breaking change detection
if: github.event_name == 'pull_request'
# Allowed to fail until main has a lint-passing baseline.
# Remove continue-on-error once this PR merges.
continue-on-error: true
run: buf breaking --against .git#branch=main
run: buf breaking --against .git#branch=origin/main
Loading