Skip to content

fix(typescript.json): πŸ€– ✨ (#220) #283

fix(typescript.json): πŸ€– ✨ (#220)

fix(typescript.json): πŸ€– ✨ (#220) #283

---
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@c5a7806660adbe173f04e3e038b0ccdcd758773c # v6
if: ${{ steps.app-token.outputs.token != '' }}
with:
author: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
body: I ran `npm run update:sorting` πŸ§‘β€πŸ’»
branch: actions/create-sorting-pr
commit-message: 'chore(sorting): πŸ€– ✨'
labels: πŸ€– bot
title: 'chore(sorting): apply sorting'
token: ${{ steps.app-token.outputs.token }}