-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add example for checks to guard push
- Loading branch information
1 parent
42c3957
commit abbad63
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# This workflow runs checks before pushing to the BSR. | ||
name: Buf CI | ||
on: | ||
push: | ||
delete: | ||
permissions: | ||
contents: read | ||
jobs: | ||
buf: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: bufbuild/buf-action@v1 | ||
with: | ||
token: ${{ secrets.BUF_TOKEN }} | ||
lint: ${{ github.event_name == 'push' }} | ||
format: ${{ github.event_name == 'push' }} | ||
breaking: ${{ github.event_name == 'push' && !contains(github.event.head_commit.message, 'buf skip breaking') }} | ||
# Specify the branch to compare against for breaking change detection. | ||
# The default for push is to compare to the commit before. We want to | ||
# compare against the main branch for a GitHub flow style workflow. | ||
breaking_against: .git#branch=main |