2022-02-17 23:07:12 +00:00
|
|
|
name: buf.build
|
2023-01-25 19:11:41 +00:00
|
|
|
on:
|
2022-02-16 17:30:10 +00:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
2022-09-08 04:27:16 +00:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2022-02-16 17:30:10 +00:00
|
|
|
jobs:
|
2022-02-17 23:07:12 +00:00
|
|
|
buf:
|
|
|
|
name: lint and publish
|
|
|
|
runs-on: ubuntu-latest
|
2022-11-12 19:19:33 +00:00
|
|
|
if: github.repository_owner == 'prometheus'
|
2022-02-17 23:07:12 +00:00
|
|
|
steps:
|
2022-03-03 14:59:07 +00:00
|
|
|
- uses: actions/checkout@v3
|
2023-07-04 11:58:23 +00:00
|
|
|
- uses: bufbuild/buf-setup-action@v1.23.1
|
2023-01-25 19:15:42 +00:00
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
2022-02-17 23:07:12 +00: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 }}
|