fix(deps): Update dependency @sanity/tsdoc to v1.0.102 (#228) #26
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Maintain typescript.json | |
on: | |
push: | |
branches: [main] | |
paths: | |
- 'package.json' | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
run: | |
name: Is typescript.json outdated? 🤔 | |
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:typescript | |
- 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@8867c4aba1b742c39f8d0ba35429c2dfa4b6cb20 # v7 | |
if: ${{ steps.app-token.outputs.token != '' }} | |
with: | |
body: I ran `npm run update:typescript` 🧑💻 | |
branch: actions/create-typescript-pr | |
commit-message: 'fix(typescript.json): 🤖 ✨' | |
labels: 🤖 bot | |
sign-commits: true | |
title: 'fix(typescript.json): update typescript version' | |
token: ${{ steps.app-token.outputs.token }} |