Skip to content

chore(deps): update dependency @sanity/pkg-utils to v7 (#958) #390

chore(deps): update dependency @sanity/pkg-utils to v7 (#958)

chore(deps): update dependency @sanity/pkg-utils to v7 (#958) #390

Workflow file for this run

name: Maintain deno/import_map.json
on:
push:
branches: [main]
paths:
- 'package.json'
workflow_dispatch:
permissions:
contents: read
jobs:
run:
name: deno run update_import_map.ts
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: npm
node-version: lts/*
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x.x
- run: npm run test:deno:update_import_map
- uses: actions/create-github-app-token@v1
id: app-token
with:
app-id: ${{ secrets.ECOSPARK_APP_ID }}
private-key: ${{ secrets.ECOSPARK_APP_PRIVATE_KEY }}
- uses: peter-evans/create-pull-request@67ccf781d68cd99b580ae25a5c18a1cc84ffff1f # v7
with:
body: I ran `npm run test:deno:update_import_map` 🧑‍💻
branch: actions/maintain-import-map
commit-message: 'chore(deno): update import_map.json'
labels: 🤖 bot
sign-commits: true
title: 'chore(deno): update import_map.json'
token: ${{ steps.app-token.outputs.token }}