2022-02-17 15:07:12 -08:00
|
|
|
name: buf.build
|
2023-01-25 11:11:41 -08:00
|
|
|
on:
|
2022-02-16 09:30:10 -08:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
2022-09-07 21:27:16 -07:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2022-02-16 09:30:10 -08:00
|
|
|
jobs:
|
2022-02-17 15:07:12 -08:00
|
|
|
buf:
|
|
|
|
name: lint and publish
|
|
|
|
runs-on: ubuntu-latest
|
2022-11-12 11:19:33 -08:00
|
|
|
if: github.repository_owner == 'prometheus'
|
2022-02-17 15:07:12 -08:00
|
|
|
steps:
|
2023-11-01 16:32:08 -07:00
|
|
|
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
2023-12-01 15:24:02 -08:00
|
|
|
- uses: bufbuild/buf-setup-action@382440cdb8ec7bc25a68d7b4711163d95f7cc3aa # v1.28.1
|
2023-01-25 11:15:42 -08:00
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
2023-09-13 06:27:38 -07:00
|
|
|
- uses: bufbuild/buf-lint-action@bd48f53224baaaf0fc55de9a913e7680ca6dbea4 # v1.0.3
|
2022-02-17 15:07:12 -08:00
|
|
|
with:
|
|
|
|
input: 'prompb'
|
2023-09-13 06:27:38 -07:00
|
|
|
- uses: bufbuild/buf-breaking-action@f47418c81c00bfd65394628385593542f64db477 # v1.1.2
|
2022-02-17 15:07:12 -08:00
|
|
|
with:
|
|
|
|
input: 'prompb'
|
|
|
|
against: 'https://github.com/prometheus/prometheus.git#branch=main,ref=HEAD~1,subdir=prompb'
|
2023-09-13 06:27:38 -07:00
|
|
|
- uses: bufbuild/buf-push-action@342fc4cdcf29115a01cf12a2c6dd6aac68dc51e1 # v1.1.1
|
2022-02-17 15:07:12 -08:00
|
|
|
with:
|
|
|
|
input: 'prompb'
|
|
|
|
buf_token: ${{ secrets.BUF_TOKEN }}
|