feat(mgmt): add credit consumption chart endpoint #620
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
name: Check proto definitions | |
on: | |
pull_request: | |
paths: | |
- '**.proto' | |
- 'buf.gen.yaml' | |
jobs: | |
buf-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: bufbuild/buf-setup-action@v1 | |
- name: Lint proto definitions | |
uses: bufbuild/buf-lint-action@v1 | |
- name: Check breaking changes against main | |
uses: bufbuild/buf-breaking-action@v1 | |
with: | |
against: 'https://github.com/instill-ai/protobufs.git#branch=main,ref=HEAD~1' |