Skip to content

chore(deps): update non-major (#296) #77

chore(deps): update non-major (#296)

chore(deps): update non-major (#296) #77

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@v3
- uses: actions/setup-node@v3
with:
cache: npm
node-version: lts/*
- uses: denoland/setup-deno@v1
with:
deno-version: vx.x.x
- run: npm run test:deno:update_import_map
- uses: tibdex/github-app-token@b62528385c34dbc9f38e5f4225ac829252d1ea92 # v1
id: generate-token
with:
app_id: ${{ secrets.ECOSPARK_APP_ID }}
private_key: ${{ secrets.ECOSPARK_APP_PRIVATE_KEY }}
- uses: peter-evans/create-pull-request@153407881ec5c347639a548ade7d8ad1d6740e38 # v5
with:
author: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
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
title: 'chore(deno): update import_map.json'
token: ${{ steps.generate-token.outputs.token }}