2023-01-29 09:04:51 +00:00
|
|
|
name: pull-request
|
2023-10-02 22:09:46 +00:00
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2023-01-29 09:04:51 +00:00
|
|
|
on: pull_request
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
2023-10-02 22:09:46 +00:00
|
|
|
uses: actions/checkout@v4
|
2023-01-29 09:04:51 +00:00
|
|
|
|
|
|
|
- name: Setup Buf
|
2024-03-29 09:20:16 +00:00
|
|
|
uses: bufbuild/buf-setup-action@v1.30.0
|
2023-01-29 09:04:51 +00:00
|
|
|
with:
|
|
|
|
github_token: ${{ github.token }}
|
|
|
|
|
|
|
|
- name: Lint
|
2024-03-29 09:20:16 +00:00
|
|
|
uses: bufbuild/buf-lint-action@v1.1.1
|
2023-01-29 09:04:51 +00:00
|
|
|
|
|
|
|
- name: Push to schema registry
|
2024-03-29 09:20:16 +00:00
|
|
|
uses: bufbuild/buf-push-action@v1.2.0
|
2023-01-29 09:04:51 +00:00
|
|
|
with:
|
|
|
|
buf_token: ${{ secrets.BUF_TOKEN }}
|
|
|
|
draft: ${{ github.ref_name != 'master'}}
|