Skip to content

Fix Lockfile

Fix Lockfile #10

Workflow file for this run

name: Fix Lockfile
on:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions:
contents: read # for checkout
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
cache: pnpm
node-version: lts/*
- run: pnpm install --ignore-scripts --fix-lockfile --no-frozen-lockfile
- run: pnpm dedupe
- uses: actions/create-github-app-token@v1
id: generate-token
with:
app-id: ${{ secrets.ECOSPARK_APP_ID }}
private-key: ${{ secrets.ECOSPARK_APP_PRIVATE_KEY }}
- uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f # v7
with:
body: I ran `pnpm install --fix-lockfile` 🧑‍💻
branch: "actions/fix-lockfile-${{ github.ref_name }}"
commit-message: "chore(lockfile): 🤖 ✨"
labels: 🤖 bot
sign-commits: true
title: "chore(lockfile): 🤖 ✨"
token: ${{ steps.generate-token.outputs.token }}