2022-02-17 15:07:12 -08:00
|
|
|
name: buf.build
|
2022-02-16 09:30:10 -08:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
jobs:
|
2022-02-17 15:07:12 -08:00
|
|
|
buf:
|
|
|
|
name: lint and publish
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-03-03 06:59:07 -08:00
|
|
|
- uses: actions/checkout@v3
|
2022-05-02 02:05:33 -07:00
|
|
|
- uses: bufbuild/buf-setup-action@v1.4.0
|
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~1,subdir=prompb'
|
|
|
|
- uses: bufbuild/buf-push-action@v1
|
|
|
|
with:
|
|
|
|
input: 'prompb'
|
|
|
|
buf_token: ${{ secrets.BUF_TOKEN }}
|