We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 510243c commit 2549b8dCopy full SHA for 2549b8d
.github/workflows/ci-protobuf.yml
@@ -0,0 +1,24 @@
1
+name: CI ProtoBuf
2
+
3
+on:
4
+ pull_request:
5
6
+jobs:
7
+ buf-breaking:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - name: Checkout repo
11
+ uses: actions/checkout@v4
12
13
+ - name: Setup buf
14
+ uses: bufbuild/buf-setup-action@35c243d7f2a909b1d4e40399b348a7fdab27d78d # v1.34.0
15
+ with:
16
+ github_token: ${{ secrets.GITHUB_TOKEN }}
17
18
+ - name: Run buf breaking
19
+ uses: bufbuild/buf-breaking-action@c57b3d842a5c3f3b454756ef65305a50a587c5ba # v1.1.4
20
+ env:
21
+ REPO_URL: https://github.com/${{ github.repository }}
22
+ BASE_BRANCH: ${{ github.base_ref }}
23
24
+ against: "${REPO_URL}.git#branch=${BASE_BRANCH}"
0 commit comments