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:
|
2024-05-01 23:05:44 +00:00
|
|
|
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
|
2024-03-21 08:14:24 +00:00
|
|
|
- uses: bufbuild/buf-setup-action@517ee23296d5caf38df31c21945e6a54bbc8a89f # v1.30.0
|
2023-01-25 19:15:42 +00:00
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
2024-04-01 23:44:18 +00:00
|
|
|
- uses: bufbuild/buf-lint-action@06f9dd823d873146471cfaaf108a993fe00e5325 # v1.1.1
|
2022-02-17 23:07:12 +00:00
|
|
|
with:
|
|
|
|
input: 'prompb'
|
2024-04-01 23:44:13 +00:00
|
|
|
- uses: bufbuild/buf-breaking-action@c57b3d842a5c3f3b454756ef65305a50a587c5ba # v1.1.4
|
2022-02-17 23:07:12 +00:00
|
|
|
with:
|
|
|
|
input: 'prompb'
|
|
|
|
against: 'https://github.com/prometheus/prometheus.git#branch=main,ref=HEAD~1,subdir=prompb'
|
2024-01-25 09:24:37 +00:00
|
|
|
- uses: bufbuild/buf-push-action@a654ff18effe4641ebea4a4ce242c49800728459 # v1.1.1
|
2022-02-17 23:07:12 +00:00
|
|
|
with:
|
|
|
|
input: 'prompb'
|
|
|
|
buf_token: ${{ secrets.BUF_TOKEN }}
|