2022-02-17 15:07:12 -08:00
|
|
|
name: buf.build
|
2023-01-25 11:09:46 -08:00
|
|
|
on:
|
2022-02-17 15:07:12 -08:00
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- ".github/workflows/buf-lint.yml"
|
|
|
|
- "**.proto"
|
2022-09-07 21:27:16 -07:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2022-02-17 15:07:12 -08:00
|
|
|
jobs:
|
|
|
|
buf:
|
|
|
|
name: lint
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-03-03 06:59:07 -08:00
|
|
|
- uses: actions/checkout@v3
|
2023-09-01 01:40:12 -07:00
|
|
|
- uses: bufbuild/buf-setup-action@v1.26.1
|
2023-01-25 11:09:46 -08:00
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
2022-02-17 15:07:12 -08:00
|
|
|
- uses: bufbuild/buf-lint-action@v1
|
|
|
|
with:
|
|
|
|
input: 'prompb'
|
|
|
|
- uses: bufbuild/buf-breaking-action@v1
|
|
|
|
with:
|
|
|
|
input: 'prompb'
|
|
|
|
against: 'https://github.com/prometheus/prometheus.git#branch=main,ref=HEAD,subdir=prompb'
|