Organizations API #89
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: buf-pull-request | |
on: | |
push: | |
branches: | |
- main | |
- master | |
- develop | |
paths-ignore: | |
- readme.md | |
- README.md | |
- CHANGELOG.md | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup Buf CLI | |
uses: bufbuild/[email protected] | |
with: | |
github_token: ${{ github.token }} | |
- name: Check for linting errors | |
uses: bufbuild/[email protected] | |
with: | |
input: 'api/proto' | |
- name: Check for breaking changes | |
uses: bufbuild/[email protected] | |
with: | |
input: 'api/proto' | |
# The 'main' branch of the GitHub repository that defines the module. | |
against: 'https://github.com/${GITHUB_REPOSITORY}.git#branch=main,ref=HEAD~1,subdir=api/proto' |