proto: rebuild the proto files from the spec repository (#7291)

* proto: rebuild the proto files from the spec repository

* remove proto checks
This commit is contained in:
William Banfield
2021-11-17 00:06:19 +00:00
committed by GitHub
parent 44b5d330b0
commit 1c34d17240
29 changed files with 164 additions and 705 deletions
-23
View File
@@ -1,23 +0,0 @@
name: Protobuf
# Protobuf runs buf (https://buf.build/) lint and check-breakage
# This workflow is only run when a .proto file has been modified
on:
workflow_dispatch: # allow running workflow manually
pull_request:
paths:
- "**.proto"
jobs:
proto-lint:
runs-on: ubuntu-latest
timeout-minutes: 4
steps:
- uses: actions/checkout@v2.4.0
- name: lint
run: make proto-lint
proto-breakage:
runs-on: ubuntu-latest
timeout-minutes: 4
steps:
- uses: actions/checkout@v2.4.0
- name: check-breakage
run: make proto-check-breaking-ci