docs: update readmes in python examples #3634
Workflow file for this run
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
| # Copyright AGNTCY Contributors (https://github.com/agntcy) | |
| # SPDX-License-Identifier: Apache-2.0 | |
| name: Buf CI | |
| on: | |
| push: | |
| paths: | |
| # Caution: This workflow could miss changes if the paths are not correctly specified. | |
| - "**.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: | |
| token: ${{ secrets.BUF_TOKEN }} | |
| breaking_against: buf.build/agntcy/slim |