fork of https://github.com/sourcegraph/zoekt
0

Configure Feed

Select the types of activity you want to include in your feed.

Create buf-breaking-check.yml (#625)

* Create buf-breaking-check.yml

buf breaking test for grpc proto file to prevent checking in breaking changes and maintaining backward compatibility

Follow up to: https://github.com/sourcegraph/sourcegraph/pull/55131

* Update buf-breaking-check.yml

add workflow_dispatch: {}

* Update .github/workflows/buf-breaking-check.yml

Co-authored-by: William Bezuidenhout <william.bezuidenhout@sourcegraph.com>

---------

Co-authored-by: William Bezuidenhout <william.bezuidenhout@sourcegraph.com>

+18
+18
.github/workflows/buf-breaking-check.yml
··· 1 + on: 2 + pull_request: 3 + types: 4 + - opened 5 + paths: 6 + - '*.proto' 7 + jobs: 8 + validate-protos: 9 + runs-on: ubuntu-latest 10 + steps: 11 + # Run `git checkout` 12 + - uses: actions/checkout@v2 13 + # Install the `buf` CLI 14 + - uses: bufbuild/buf-setup-action@v1 15 + # Run breaking change detection against the `main` branch 16 + - uses: bufbuild/buf-breaking-action@v1 17 + with: 18 + against: 'https://github.com/sourcegraph/zoekt.git#branch=main'