feat(portal-web): 增加检查已部署代理网关的交互式应用可连接状态 #1027
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 SCOW API Breaking Changes | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: [master] | |
jobs: | |
check-api-breaking-changes: | |
name: Check SCOW API Breaking Changes | |
runs-on: ${{ vars.ACTION_RUNNER_LABEL }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: bufbuild/buf-setup-action@v1 | |
- name: Check API Compatibility | |
working-directory: protos | |
run: buf breaking --against '../.git#branch=origin/master,subdir=protos' |