Update dependency @types/express-serve-static-core to v5 #6166
Workflow file for this run
This file contains 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-font-data | ||
on: | ||
create : pull request | ||
# Run every every day at midnight https://crontab.guru/#0_0_*_*_*/1 | ||
schedule: | ||
- cron: '0 0 * * */1' | ||
# Allow manual runs | ||
workflow_dispatch: | ||
env: | ||
NODE_LTS_VERSION: 18.16.1 | ||
jobs: | ||
create-pull-request: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
# Commits made with the default `GITHUB_TOKEN` won't trigger workflows. | ||
# See: https://docs.github.com/en/actions/security-guides/automatic-token-authentication#using-the-github_token-in-a-workflow | ||
token: ${{ secrets.RELEASE_BOT_GITHUB_TOKEN }} | ||
- name: Setup node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ env.NODE_LTS_VERSION }} | ||
check-latest: true | ||
- run: corepack enable | ||
- name: Install dependencies | ||
shell: bash | ||
run: pnpm i | ||
- name: Create Pull Request | ||
shell: bash | ||
run: node scripts/update-fonts-data-workflow.js | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GH_TOKEN_PULL_REQUESTS }} |