Skip to content

Commit 6a73b39

Browse files
fix: use npx in transition action (#2019)
## PR Checklist - [x] Addresses an existing open issue: fixes #2018 - [x] That issue was marked as [`status: accepting prs`](https://github.com/JoshuaKGoldberg/create-typescript-app/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22) - [x] Steps in [CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/create-typescript-app/blob/main/.github/CONTRIBUTING.md) were taken ## Overview 🎁
1 parent 826be8d commit 6a73b39

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/blocks/blockCTATransitions.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ describe("blockCTATransitions", () => {
3737
runs:
3838
steps:
3939
- uses: ./.github/actions/prepare
40-
- run: pnpx create-typescript-app
40+
- run: npx create-typescript-app
4141
shell: bash
4242
- id: auto-commit-action
4343
uses: stefanzweifel/git-auto-commit-action@v5
@@ -51,7 +51,7 @@ describe("blockCTATransitions", () => {
5151
with:
5252
issue: \${{ github.event.pull_request.number }}
5353
message: >-
54-
🤖 Beep boop! I ran \`pnpx create-typescript-app\` and it updated some
54+
🤖 Beep boop! I ran \`npx create-typescript-app\` and it updated some
5555
files.
5656
5757
I went ahead and checked those changes into this PR for you. Please

src/blocks/blockCTATransitions.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export const blockCTATransitions = base.createBlock({
3535
steps: [
3636
{ uses: "./.github/actions/prepare" },
3737
{
38-
run: "pnpx create-typescript-app",
38+
run: "npx create-typescript-app",
3939
shell: "bash",
4040
},
4141
{
@@ -56,7 +56,7 @@ export const blockCTATransitions = base.createBlock({
5656
with: {
5757
issue: "${{ github.event.pull_request.number }}",
5858
message: [
59-
"🤖 Beep boop! I ran `pnpx create-typescript-app` and it updated some files.",
59+
"🤖 Beep boop! I ran `npx create-typescript-app` and it updated some files.",
6060
"I went ahead and checked those changes into this PR for you. Please review the latest commit to see if you want to merge it.",
6161
"Cheers!",
6262
" — _The Friendly Bingo Bot_ 💝",

0 commit comments

Comments
 (0)