diff options
Diffstat (limited to 'api')
-rw-r--r-- | api/.github/workflows/buf-ci.yaml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/api/.github/workflows/buf-ci.yaml b/api/.github/workflows/buf-ci.yaml new file mode 100644 index 0000000..4eb4862 --- /dev/null +++ b/api/.github/workflows/buf-ci.yaml @@ -0,0 +1,18 @@ +name: Buf CI + +on: + push: + pull_request: + types: [opened, synchronize, reopened, labeled, unlabeled] + delete: + +permissions: + contents: read + pull-requests: write + +jobs: + buf: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: bufbuild/buf-action@v1 |