feat: added ics27-2 gmp application #684
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 breaking check | |
| # proto breaking check workflow checks if Protobuf file contains breaking changes. | |
| # This workflow runs when a PR that targets Protobuf is opened. | |
| on: | |
| merge_group: | |
| pull_request: | |
| paths: | |
| - "proto/**/*.proto" | |
| jobs: | |
| proto-breaking-check: | |
| runs-on: depot-ubuntu-24.04-4 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Run proto-breaking check | |
| run: make proto-check-breaking |