Skip to content

Commit 70d6937

Browse files
fix: update branch protection settings for lint_package-json (#779)
## PR Checklist - [x] Addresses an existing open issue: fixes #778 - [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 Mostly a find-and-replace.
1 parent 115c814 commit 70d6937

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/lint-package-json.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
jobs:
2-
lint_package:
2+
lint_package_json:
33
runs-on: ubuntu-latest
44
steps:
55
- uses: actions/checkout@v3

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
{ context: "lint" },
6565
{ context: "lint_knip" },
6666
{ context: "lint_markdown" },
67-
{ context: "lint_package" },
67+
{ context: "lint_package_json" },
6868
{ context: "lint_packages" },
6969
{ context: "lint_spelling" },
7070
{ context: "prettier" },

src/steps/initializeGitHubRepository/initializeBranchProtectionSettings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export async function initializeBranchProtectionSettings(
3030
{ context: "lint" },
3131
{ context: "lint_knip" },
3232
{ context: "lint_markdown" },
33-
{ context: "lint_package" },
33+
{ context: "lint_package_json" },
3434
{ context: "lint_packages" },
3535
{ context: "lint_spelling" },
3636
{ context: "prettier" },

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ export function createWorkflows(options: Options) {
241241
{ context: "lint" },
242242
{ context: "lint_knip" },
243243
{ context: "lint_markdown" },
244-
{ context: "lint_package" },
244+
{ context: "lint_package_json" },
245245
{ context: "lint_packages" },
246246
{ context: "lint_spelling" },
247247
{ context: "prettier" },

0 commit comments

Comments
 (0)