Skip to content

fix(deps): update dependency @portabletext/toolkit to ^2.0.15 (#63) #64

fix(deps): update dependency @portabletext/toolkit to ^2.0.15 (#63)

fix(deps): update dependency @portabletext/toolkit to ^2.0.15 (#63) #64

---
name: Auto format
on:
push:
branches: [main]
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
permissions:
contents: read # for checkout
jobs:
run:
name: Can the code be formatted? πŸ€”
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- run: corepack enable && pnpm --version
- run: pnpm install --ignore-scripts
- run: pnpm format
- run: git restore .github/workflows CHANGELOG.md
- uses: actions/create-github-app-token@v1
id: generate-token
with:
app-id: ${{ secrets.ECOSCRIPT_APP_ID }}
private-key: ${{ secrets.ECOSCRIPT_APP_PRIVATE_KEY }}
- uses: peter-evans/create-pull-request@70a41aba780001da0a30141984ae2a0c95d8704e # v6
with:
author: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
body: I ran `pnpm format` πŸ§‘β€πŸ’»
branch: actions/format
commit-message: 'chore(format): πŸ€– ✨'
delete-branch: true
labels: πŸ€– bot
title: 'chore(format): πŸ€– ✨'
token: ${{ steps.generate-token.outputs.token }}