Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: v1alpha client generation #2615

Merged
merged 16 commits into from
Aug 27, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/hermetic_library_generation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ env:
jobs:
library_generation:
# skip pull requests coming from a forked repository
if: github.env.REPO_FULL_NAME == github.repository
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@blakeli0 inlining the org/repo as an env var seems to break this if statement

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Probably because REPO_FULL_NAME is not referenced as a variable like $REPO_FULL_NAME?

if: ${{ github.event.pull_request.head.repo.full_name == github.repository }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 2 additions & 0 deletions generation_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,7 @@ libraries:
recommended_package: com.google.cloud.bigquery.storage.v1
GAPICs:
- proto_path: google/cloud/bigquery/storage/v1
- proto_path: google/cloud/bigquery/storage/v1alpha
- proto_path: google/cloud/bigquery/storage/v1beta1
- proto_path: google/cloud/bigquery/storage/v1beta2

Loading