feat: add explicit group_head_ids selection and search filter to ExportRMGroupsRequest #43
Workflow file for this run
This file contains hidden or 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: Proto CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| lint-and-check: | |
| name: Lint & Breaking Changes | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 # Required for breaking change detection | |
| - name: Setup Buf | |
| uses: bufbuild/buf-setup-action@v1 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Lint proto files | |
| run: buf lint | |
| - name: Check formatting | |
| run: | | |
| buf format -d --exit-code | |
| - name: Check breaking changes | |
| if: github.event_name == 'pull_request' | |
| continue-on-error: true | |
| run: buf breaking --against 'https://github.com/mutugading/goapps-shared-proto.git#branch=main' |