Skip to content

fix: restore tsconfig for typecheck, fix wrap() type (#19) #14

fix: restore tsconfig for typecheck, fix wrap() type (#19)

fix: restore tsconfig for typecheck, fix wrap() type (#19) #14

Workflow file for this run

name: Changesets PR
on:
push:
branches:
- main
paths:
- ".changeset/**"
- "packages/**"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
changesets-pr:
if: github.repository == 'triggerdotdev/agentcrumbs'
name: Create Release PR
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
with:
version: 10
- uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- run: pnpm install --frozen-lockfile
- name: Create Release PR
uses: changesets/action@v1
with:
title: "chore: version package"
commit: "chore: version package"
version: pnpm changeset version
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}