fix: handle bug affecting next 14.2.2 during static pregeneration (#748) #382
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@9153d834b60caba6d51c9b9510b087acf9f33f83 # 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 }} |