Skip to content

Commit

Permalink
feat(ci): add proto-breaking-check workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kobakaku committed Oct 12, 2024
1 parent 10175b9 commit 1995166
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/proto-breaking-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
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: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run proto-breaking check
run: make proto-check-breaking

0 comments on commit 1995166

Please sign in to comment.