Skip to content

Commit f297187

Browse files
fix: corrected labels.json import path (#479)
## PR Checklist - [x] Addresses an existing open issue: fixes #478 - [x] That issue was marked as [`status: accepting prs`](https://github.com/JoshuaKGoldberg/template-typescript-node-package/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22) - [x] Steps in [CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/template-typescript-node-package/blob/main/.github/CONTRIBUTING.md) were taken ## Overview Corrects the path.
1 parent 0113ea0 commit f297187

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/setup/steps/hydrateRepositoryLabels.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export async function hydrateRepositoryLabels() {
2222
).map(getLabelName);
2323

2424
const outcomeLabels = (await readFileAsJSON(
25-
"./script/labels.json"
25+
"./src/setup/labels.json"
2626
)) as FileLabelData[];
2727

2828
for (const outcome of outcomeLabels) {

0 commit comments

Comments
 (0)