fix: rename i_pv4s and i_pv6s to ipv4s and ipv6s for consistency (#6) #26
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: Buf CI | |
| on: | |
| push: | |
| paths: | |
| - '**.proto' | |
| - '**/buf.yaml' | |
| - '**/buf.lock' | |
| - '**/buf.md' | |
| - '**/README.md' | |
| - '**/LICENSE' | |
| pull_request: | |
| types: [opened, synchronize, reopened, labeled, unlabeled] | |
| delete: | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| buf: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: bufbuild/buf-action@v1 | |
| with: | |
| # Publishing schema changes to the BSR requires a BSR authentication token. | |
| token: ${{ secrets.BUF_TOKEN }} | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| push_create_visibility: public |