Skip to content

fix(deps): update dependency @sanity/presentation to v1.11.1 (#5853) #1028

fix(deps): update dependency @sanity/presentation to v1.11.1 (#5853)

fix(deps): update dependency @sanity/presentation to v1.11.1 (#5853) #1028

---
name: Prettier
on:
push:
branches: [next]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
cancel-in-progress: true
permissions:
contents: read
jobs:
run:
name: Can the code be prettier? 🤔
runs-on: ubuntu-latest
# workflow_dispatch always lets you select the branch ref, even though in this case we only ever want to run the action on `main` thus we need an if check
if: ${{ github.ref_name == 'next' }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install pnpm
run: corepack enable && pnpm --version
- name: Cache node modules
id: cache-node-modules
uses: actions/cache@v4
env:
cache-name: cache-node-modules
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ env.cache-name }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-modules-${{ env.cache-name }}-
${{ runner.os }}-modules-
${{ runner.os }}-
- name: Install project dependencies
if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: pnpm install --config.ignore-scripts=true
- name: Cache Prettier
uses: actions/cache@v4
with:
path: node_modules/.cache/prettier/.prettier-cache
key: prettier-${{ hashFiles('pnpm-lock.yaml') }}
- run: pnpm chore:format:fix
- name: GitHub blocks PRs from automation that alter workflows in any way
run: git restore .github/workflows pnpm-lock.yaml
- uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2
id: generate-token
with:
app_id: ${{ secrets.ECOSPARK_APP_ID }}
private_key: ${{ secrets.ECOSPARK_APP_PRIVATE_KEY }}
- uses: peter-evans/create-pull-request@b1ddad2c994a25fbc81a28b3ec0e368bb2021c50 # v6
with:
body: I ran `pnpm prettier` 🧑‍💻
branch: actions/prettier-if-needed
commit-message: 'chore(prettier): fix unformatted files 🤖 ✨'
labels: 🤖 bot
title: 'chore(prettier): fix unformatted files 🤖 ✨'
token: ${{ steps.generate-token.outputs.token }}