Skip to content

chore(deps): update dependency next-sanity to v8 #1356

chore(deps): update dependency next-sanity to v8

chore(deps): update dependency next-sanity to v8 #1356

Workflow file for this run

name: 🤖 Auto Prettier ✨
on: push
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
run:
name: Prettier if needed
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
cache: npm
node-version: lts/*
- run: npm ci --no-scripts
- name: check if workflows needs prettier
run: npx prettier --ignore-path .gitignore --check ".github/workflows/**/*.yml" || (echo "An action can't make changes to actions, you'll have to run prettier manually" && exit 1)
- run: npx prettier --ignore-path .gitignore --write .
- uses: EndBug/add-and-commit@1bad3abcf0d6ec49a5857d124b0bfb52dc7bb081 # v9
with:
message: 'chore(prettier): 🤖 ✨'