-
Notifications
You must be signed in to change notification settings - Fork 25
33 lines (33 loc) · 1008 Bytes
/
buf.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: buf
on:
push:
branches: ["main"]
workflow_dispatch: {} # support manual runs
jobs:
push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: bufbuild/[email protected]
with:
github_token: ${{ github.token }}
- uses: bufbuild/[email protected]
with:
input: 'limit-output-types'
buf_token: ${{ secrets.BUF_TOKEN }}
- uses: bufbuild/[email protected]
with:
input: 'linting/bad'
buf_token: ${{ secrets.BUF_TOKEN }}
- uses: bufbuild/[email protected]
with:
input: 'linting/good'
buf_token: ${{ secrets.BUF_TOKEN }}
- uses: bufbuild/[email protected]
with:
input: 'workspace/observabilitytypes'
buf_token: ${{ secrets.BUF_TOKEN }}
- uses: bufbuild/[email protected]
with:
input: 'workspace/observabilityapi'
buf_token: ${{ secrets.BUF_TOKEN }}