mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-18 03:24:05 -08:00
21 lines
523 B
YAML
21 lines
523 B
YAML
|
name: buf.build
|
||
|
on:
|
||
|
pull_request:
|
||
|
paths:
|
||
|
- ".github/workflows/buf-lint.yml"
|
||
|
- "**.proto"
|
||
|
jobs:
|
||
|
buf:
|
||
|
name: lint
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- uses: bufbuild/buf-setup-action@v0.6.0
|
||
|
- 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'
|