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 3dd59b9 commit 4c9c4f4Copy full SHA for 4c9c4f4
.github/workflows/buf-ci.yml
@@ -0,0 +1,33 @@
1
+name: Buf CI
2
+
3
+on:
4
+ pull_request:
5
+ types:
6
+ - opened
7
+ - reopened
8
+ - synchronize
9
+ push:
10
+ branches:
11
+ - development
12
+ - master
13
+ tags:
14
+ - '*'
15
+ release:
16
17
+ - published
18
19
+jobs:
20
+ buf:
21
+ runs-on: ubuntu-latest
22
+ permissions:
23
+ contents: read
24
+ pull-requests: write
25
26
+ steps:
27
+ - name: Checkout Repository
28
+ uses: actions/checkout@v5
29
30
+ - name: Buf Action
31
+ uses: bufbuild/buf-action@8f4a1456a0ab6a1eb80ba68e53832e6fcfacc16c #v1.3.0
32
+ with:
33
+ token: ${{ secrets.BUF_TOKEN }}
0 commit comments