Skip to content

fix(deps): Update dependency @sanity/tsdoc to v1.0.108 (#234) #295

fix(deps): Update dependency @sanity/tsdoc to v1.0.108 (#234)

fix(deps): Update dependency @sanity/tsdoc to v1.0.108 (#234) #295

---
name: Maintain consistent json sorting
on:
push:
branches: [main]
paths:
- '**/*.json'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
permissions:
contents: read
jobs:
run:
name: Is json sorted? 🤔
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
- run: npm run update:sorting
- uses: actions/create-github-app-token@v1
id: app-token
if: ${{ env.HAVE_ECOSPARK_APP_ID == 'true' }}
env:
HAVE_ECOSPARK_APP_ID: ${{ secrets.ECOSPARK_APP_ID != '' }}
with:
app-id: ${{ secrets.ECOSPARK_APP_ID }}
private-key: ${{ secrets.ECOSPARK_APP_PRIVATE_KEY }}
- uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f # v7
if: ${{ steps.app-token.outputs.token != '' }}
with:
body: I ran `npm run update:sorting` 🧑‍💻
branch: actions/create-sorting-pr
commit-message: 'chore(sorting): 🤖 ✨'
labels: 🤖 bot
sign-commits: true
title: 'chore(sorting): apply sorting'
token: ${{ steps.app-token.outputs.token }}