Skip to content

Commit

Permalink
Merge branch 'main' into add-php-cs-fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
bshaffer authored Oct 6, 2024
2 parents a297d65 + 4021aec commit 8e7c88f
Show file tree
Hide file tree
Showing 101 changed files with 5,084 additions and 627 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/backwards-compatibility-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,15 +68,17 @@ jobs:
continue-on-error: true
# OwlBot PRs which are not labelled feat should not add new files or methods
run: |
~/.composer/vendor/bin/roave-backward-compatibility-check --to=origin/main --format=github-actions
~/.composer/vendor/bin/roave-backward-compatibility-check \
--from=${{ github.ref_name }} \
--to=origin/main --format=github-actions
- name: "Print the action item"
run: |
if [[ "${{ steps.compatibility-checker.outcome }}" == 'failure' ]]; then
if [[ "${{ startsWith(github.event.pull_request.title, 'feat') }}" == "true" ]]; then
if [[ "${{ startsWith(github.event.pull_request.title, 'feat') }}" == "false" ]]; then
echo "Action item: Change the conventional commit to use 'feat'"
exit 1
fi
elif [[ "${{ startsWith(github.event.pull_request.title, 'feat') }}" == "false" ]]; then
elif [[ "${{ startsWith(github.event.pull_request.title, 'feat') }}" == "true" ]]; then
echo "Action item: No features found, do not use 'feat' for the conventional commit"
exit 1
fi
Expand Down
2 changes: 1 addition & 1 deletion AiPlatform/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.7.0
1.8.0
Binary file modified AiPlatform/metadata/V1/Content.php
Binary file not shown.
Binary file modified AiPlatform/metadata/V1/FeatureView.php
Binary file not shown.
Binary file modified AiPlatform/metadata/V1/Tool.php
Binary file not shown.
115 changes: 115 additions & 0 deletions AiPlatform/src/V1/DynamicRetrievalConfig.php

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

55 changes: 55 additions & 0 deletions AiPlatform/src/V1/DynamicRetrievalConfig/Mode.php

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

38 changes: 38 additions & 0 deletions AiPlatform/src/V1/FeatureView/SyncConfig.php

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

44 changes: 44 additions & 0 deletions AiPlatform/src/V1/GoogleSearchRetrieval.php

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

44 changes: 44 additions & 0 deletions AiPlatform/src/V1/GroundingMetadata.php

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 8e7c88f

Please sign in to comment.