Skip to content

chore(lockfile): Update dependency next-sanity to v9.8.11 (#405) #151

chore(lockfile): Update dependency next-sanity to v9.8.11 (#405)

chore(lockfile): Update dependency next-sanity to v9.8.11 (#405) #151

Workflow file for this run

---
name: TypeGen
on:
push:
branches: [main]
paths:
- 'website/**'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions:
contents: read # for checkout
jobs:
run:
defaults:
run:
working-directory: ./website
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v4
with:
cache: pnpm
node-version: lts/*
- run: pnpm install --ignore-scripts
- run: pnpm typegen
env:
NEXT_PUBLIC_SANITY_DATASET: ${{secrets.NEXT_PUBLIC_SANITY_DATASET}}
NEXT_PUBLIC_SANITY_PROJECT_ID: ${{secrets.NEXT_PUBLIC_SANITY_PROJECT_ID}}
- uses: actions/create-github-app-token@v1
id: generate-token
with:
app-id: ${{ secrets.ECOSPARK_APP_ID }}
private-key: ${{ secrets.ECOSPARK_APP_PRIVATE_KEY }}
- uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f # v7
with:
body: I ran `pnpm typegen` 🧑‍💻
branch: actions/typegen
commit-message: 'fix(typegen): 🤖 ✨'
labels: 🤖 bot
sign-commits: true
title: 'fix(typegen): 🤖 ✨'
token: ${{ steps.generate-token.outputs.token }}