build: do not auto install peer dependencies (#61294) #2
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: Update ADEV Angular CDK apis | |
| on: | |
| workflow_dispatch: | |
| inputs: {} | |
| push: | |
| branches: | |
| - 'main' | |
| - '[0-9]+.[0-9]+.x' | |
| # Declare default permissions as read only. | |
| permissions: | |
| contents: read | |
| jobs: | |
| update_cdk_apis: | |
| name: Update Angular CDK apis (if necessary) | |
| if: github.repository == 'angular/angular' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout the repository | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| with: | |
| # Setting `persist-credentials: false` prevents the github-action account from being the | |
| # account that is attempted to be used for authentication, instead the remote is set to | |
| # an authenticated URL. | |
| persist-credentials: false | |
| # This is needed as otherwise the PR creation will fail with `shallow update not allowed` when the forked branch is not in sync. | |
| fetch-depth: 0 | |
| - name: Generate CDK apis | |
| run: node adev/scripts/update-cdk-apis/index.mjs | |
| env: | |
| ANGULAR_CDK_BUILDS_READONLY_GITHUB_TOKEN: ${{ secrets.ANGULAR_CDK_BUILDS_READONLY_GITHUB_TOKEN }} | |
| - name: Create a PR (if necessary) | |
| uses: angular/dev-infra/github-actions/create-pr-for-changes@1685f0afc967fb7de4b46ccb22f22d779ee3086c | |
| with: | |
| branch-prefix: update-cdk-apis | |
| pr-title: 'docs: update Angular CDK apis [${{github.ref_name}}]' | |
| pr-description: | | |
| Updated Angular CDK api files. | |
| pr-labels: | | |
| action: merge | |
| area: docs | |
| angular-robot-token: ${{ secrets.ANGULAR_ROBOT_ACCESS_TOKEN }} |