API: Add new AdmissionControl service (experimental for now) #28
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Validate protobuf files for incompatible changes. | |
name: Validate protobuf files | |
on: | |
pull_request: | |
paths: | |
- 'proto/backend.proto' | |
branches: | |
- 'main' | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
# Run `git checkout` | |
- uses: actions/checkout@v2 | |
# Install the `buf` CLI | |
- uses: bufbuild/buf-setup-action@v1 | |
# Perform breaking change detection against the `proto` directory in the `main` branch | |
- uses: bufbuild/buf-breaking-action@v1 | |
with: | |
input: 'proto' | |
against: 'https://github.com/grafana/grafana-plugin-sdk-go.git#branch=main,subdir=proto' |