Skip to content

Commit 09dbd39

Browse files
fix: correct key for excluding lint-packages.yml (#840)
## PR Checklist - [x] Addresses an existing open issue: fixes #752 - [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 Turns out it'd been using the wrong excludes key.
1 parent 782e064 commit 09dbd39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/steps/writing/creation/dotGitHub/workflows.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ export function createWorkflows(options: Options) {
108108
runs: ["pnpm lint:package-json"],
109109
}),
110110
}),
111-
...(!options.excludeLintPackageJson && {
111+
...(!options.excludeLintPackages && {
112112
"lint-packages.yml": createWorkflowFile({
113113
name: "Lint Packages",
114114
runs: ["pnpm lint:packages"],

0 commit comments

Comments
 (0)