Angular-Org Renovate #35388
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: Angular-Org Renovate | |
on: | |
workflow_dispatch: | |
schedule: | |
# Runs every 30 minutes. | |
- cron: '*/30 * * * *' | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: true | |
# Declare default permissions as read only. | |
permissions: | |
contents: read | |
jobs: | |
renovate: | |
strategy: | |
matrix: | |
REPOSITORY: | |
- angular/angular | |
- angular/dev-infra | |
- angular/components | |
- angular/angular-cli | |
- angular/vscode-ng-language-service | |
- angular/ai-tutor | |
- angular/web-codegen-scorer | |
runs-on: ubuntu-latest | |
steps: | |
# Because the checkout and setup node action is contained in the dev-infra repo, we must | |
# checkout the repo to be able to run the action we have created. Other repos will skip | |
# this step. | |
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
- uses: ./github-actions/npm/checkout-and-setup-node | |
with: | |
cache-dependency-path: './.github/ng-renovate/pnpm-lock.yaml' | |
- run: pnpm install --frozen-lockfile | |
working-directory: ./.github/ng-renovate | |
- run: pnpm exec renovate | |
working-directory: ./.github/ng-renovate | |
env: | |
LOG_LEVEL: debug | |
RENOVATE_TOKEN: ${{ secrets.NG_RENOVATE_USER_ACCESS_TOKEN }} | |
RENOVATE_FORK_TOKEN: ${{ secrets.NG_RENOVATE_USER_ACCESS_TOKEN }} | |
GITHUB_COM_TOKEN: ${{ secrets.NG_RENOVATE_USER_ACCESS_TOKEN }} | |
RENOVATE_CONFIG_FILE: ./runner-config.js | |
RENOVATE_REPOSITORIES: ${{ matrix.REPOSITORY }} |