Skip to content

Commit 4c9c4f4

Browse files
authored
Create buf-ci.yml
1 parent 3dd59b9 commit 4c9c4f4

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

.github/workflows/buf-ci.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
types:
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

Comments
 (0)