fix: bump @angular/core, @angular/common, @angular/forms, @angular/platform-browser, @angular/router and @angular/build in /packages/bigframes/bigframes/display/table_widget_angular #5810
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 2025 Google LLC | |
| # | |
| # Licensed under the Apache License, Version 2.0 (the "License"); | |
| # you may not use this file except in compliance with the License. | |
| # You may obtain a copy of the License at | |
| # | |
| # https://www.apache.org/licenses/LICENSE-2.0 | |
| # | |
| # Unless required by applicable law or agreed to in writing, software | |
| # distributed under the License is distributed on an "AS IS" BASIS, | |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| # See the License for the specific language governing permissions and | |
| # limitations under the License. | |
| # ============================================================================== | |
| # This configuration is used for the organization-wide multi-approvers ruleset. | |
| # We store it centrally in this repository. See GitHub Action for details: | |
| # https://github.com/abcxyz/actions/tree/main/.github/actions/multi-approvers. | |
| # ============================================================================== | |
| name: 'multi-approvers' | |
| on: | |
| # We use `pull_request_target` instead of `pull_request` because this workflow | |
| # requires the `secrets.MULTI_APPROVERS_TOKEN` to check membership in the | |
| # 'googlers' GitHub team. Standard `pull_request` workflows triggered from | |
| # forks do not have access to secrets. Since this is a public repository that | |
| # receives PRs from forks, `pull_request_target` is required to access the | |
| # token. This is safe because the workflow runs in the context of the base | |
| # branch and does not check out or run untrusted code from the PR branch. | |
| # For more details, see the action's documentation: | |
| # https://github.com/abcxyz/actions/blob/main/.github/actions/multi-approvers/README.md | |
| pull_request_target: | |
| types: | |
| - 'opened' | |
| - 'edited' | |
| - 'reopened' | |
| - 'synchronize' | |
| - 'ready_for_review' | |
| - 'review_requested' | |
| - 'review_request_removed' | |
| permissions: | |
| actions: 'write' | |
| contents: 'read' | |
| id-token: 'write' | |
| pull-requests: 'read' | |
| concurrency: | |
| group: '${{ github.workflow }}-${{ github.head_ref || github.ref }}' | |
| cancel-in-progress: true | |
| jobs: | |
| multi-approvers: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: 'Multi-approvers' | |
| uses: 'abcxyz/actions/.github/actions/multi-approvers@893209ed79a3d2508eeec375ffaf3d21012f5cd0' | |
| with: | |
| team: 'googlers' | |
| token: '${{ secrets.MULTI_APPROVERS_TOKEN }}' | |
| user-id-allowlist: '25180681,55107282,122572305,78513119,49699333,70984784,44816363,205009765,56741989,224858768,104649659' | |
| # username to ID mapping (https://api.github.com/users/{username}): | |
| # renovate-bot: 25180681 | |
| # release-please[bot]: 55107282 | |
| # cloud-java-bot: 122572305 | |
| # gcf-owl-bot[bot]: 78513119 | |
| # dependabot[bot]: 49699333 | |
| # yoshi-code-bot: 70984784 | |
| # yoshi-automation: 44816363 | |
| # google-cloud-sdk-librarian-dotnet-robot: 205009765 | |
| # copybara-service[bot]: 56741989 | |
| # cloud-sdk-librarian-robot: 224858768 | |
| # owlbot-bootstrapper[bot]: 104649659 |