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:
|
2024-04-01 05:30:53 -07:00
|
|
|
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
|
2024-03-21 01:14:24 -07:00
|
|
|
- uses: bufbuild/buf-setup-action@517ee23296d5caf38df31c21945e6a54bbc8a89f # v1.30.0
|
2023-01-25 11:15:42 -08:00
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
2023-11-01 16:32:17 -07:00
|
|
|
- uses: bufbuild/buf-lint-action@044d13acb1f155179c606aaa2e53aea304d22058 # v1.1.0
|
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'
|
2024-01-25 01:24:37 -08:00
|
|
|
- uses: bufbuild/buf-push-action@a654ff18effe4641ebea4a4ce242c49800728459 # v1.1.1
|
2022-02-17 15:07:12 -08:00
|
|
|
with:
|
|
|
|
input: 'prompb'
|
|
|
|
buf_token: ${{ secrets.BUF_TOKEN }}
|