Skip to content

fix(deps): Update dependency @sanity/pkg-utils to v6.8.13 (#209) #94

fix(deps): Update dependency @sanity/pkg-utils to v6.8.13 (#209)

fix(deps): Update dependency @sanity/pkg-utils to v6.8.13 (#209) #94

---
name: Auto format
on:
push:
branches: [main]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
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:
cache: npm
node-version: lts/*
- run: npm ci --ignore-scripts --only-dev
- uses: actions/cache@v4
with:
path: node_modules/.cache/prettier/.prettier-cache
key: prettier-${{ hashFiles('package-lock.json') }}-${{ hashFiles('.gitignore') }}
- run: npm run format
- run: git restore .github/workflows
- 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@6d6857d36972b65feb161a90e484f2984215f83e # v6
with:
author: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
body: I ran `npm run format` πŸ§‘β€πŸ’»
branch: actions/format
commit-message: 'chore(format): πŸ€– ✨'
labels: πŸ€– bot
title: 'chore(format): πŸ€– ✨'
token: ${{ steps.generate-token.outputs.token }}