feat(bigtable): add ClientConfigurationManager + EnableSession config #413
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
| name: librarian tidy | |
| on: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| tidy-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - uses: dorny/paths-filter@v4 | |
| id: changes | |
| with: | |
| filters: | | |
| librarian: | |
| - 'librarian.yaml' | |
| # Version of librarian is pulled from librarian.yaml, | |
| # main corresponds to the action's source definition. | |
| - uses: googleapis/librarian@main | |
| - name: Run librarian tidy | |
| if: steps.changes.outputs.librarian == 'true' | |
| run: librarian tidy | |
| - name: Check for diff | |
| if: steps.changes.outputs.librarian == 'true' | |
| run: | | |
| if ! git diff --exit-code; then | |
| V=$(librarian config get version) | |
| echo "librarian.yaml is not tidy. Please run:" | |
| echo "" | |
| echo " go run github.com/googleapis/librarian/cmd/librarian@${V} tidy" | |
| echo "" | |
| echo "to tidy librarian.yaml and commit the changes." | |
| exit 1 | |
| fi |