Update Browserslist database #21
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 Browserslist database | |
on: | |
schedule: | |
- cron: "0 2 1,15 * *" | |
workflow_dispatch: | |
permissions: | |
contents: read # for checkout | |
jobs: | |
update-browserslist-database: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v3 | |
- uses: actions/setup-node@v4 | |
with: | |
cache: pnpm | |
node-version: lts/* | |
- run: corepack enable && pnpm --version | |
- run: pnpm install --ignore-scripts | |
- run: npx update-browserslist-db@latest | |
- uses: actions/create-github-app-token@v1 | |
id: app-token | |
with: | |
app-id: ${{ secrets.ECOSPARK_APP_ID }} | |
private-key: ${{ secrets.ECOSPARK_APP_PRIVATE_KEY }} | |
- uses: peter-evans/create-pull-request@6d6857d36972b65feb161a90e484f2984215f83e # v6 | |
with: | |
author: github-actions <41898282+github-actions[bot]@users.noreply.github.com> | |
body: I ran `npx update-browserslist-db@latest` 🧑💻 | |
branch: actions/update-browserslist-database-if-needed | |
commit-message: "chore: update browserslist db" | |
labels: 🤖 bot | |
title: "chore: update browserslist db" | |
token: ${{ steps.app-token.outputs.token }} |