chore: update browserslist db (#724) #369
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: Maintain bun.lockb | |
on: | |
push: | |
branches: [main] | |
paths: | |
- 'package-lock.json' | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
run: | |
name: bun install | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: oven-sh/setup-bun@8f24390df009a496891208e5e36b8a1de1f45135 # v1 | |
with: | |
bun-version: latest | |
- run: bun install | |
- 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@c55203cfde3e5c11a452d352b4393e68b85b4533 # v6 | |
with: | |
body: I ran `bun install` 🧑💻 | |
branch: actions/maintain-bun-lock | |
commit-message: 'chore(bun): update bun lockfile' | |
labels: 🤖 bot | |
title: 'chore(bun): update bun lockfile' | |
token: ${{ steps.app-token.outputs.token }} |