Skip to content

Commit cc0cbaf

Browse files
fix: remove unnecessary gh workflow run (#868)
## PR Checklist - [x] Addresses an existing open issue: fixes #863 - [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 Removing this aligns `release.yml` to the template, yay!
1 parent dcc6ad4 commit cc0cbaf

File tree

2 files changed

+29
-31
lines changed

2 files changed

+29
-31
lines changed

script/migrate-test-e2e.js

-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ const filesExpectedToBeChanged = new Set([
3535
".eslintignore",
3636
".eslintrc.cjs",
3737
".github/DEVELOPMENT.md",
38-
".github/workflows/release.yml",
3938
".github/workflows/lint.yml",
4039
".github/workflows/lint-knip.yml",
4140
".github/workflows/test.yml",

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

+29-30
Original file line numberDiff line numberDiff line change
@@ -214,8 +214,7 @@ export function createWorkflows(options: Options) {
214214
},
215215
run: `
216216
if pnpm run should-semantic-release ; then
217-
pnpm release-it --verbose
218-
gh workflow run post-release.yml
217+
pnpm release-it --verbose
219218
fi`,
220219
},
221220
{
@@ -228,34 +227,34 @@ export function createWorkflows(options: Options) {
228227
github.request(
229228
\`PUT /repos/${options.owner}/${options.repository}/branches/main/protection\`,
230229
{
231-
allow_deletions: false,
232-
allow_force_pushes: true,
233-
allow_fork_pushes: false,
234-
allow_fork_syncing: true,
235-
block_creations: false,
236-
branch: "main",
237-
enforce_admins: false,
238-
owner: "${options.owner}",
239-
repo: "${options.repository}",
240-
required_conversation_resolution: true,
241-
required_linear_history: false,
242-
required_pull_request_reviews: null,
243-
required_status_checks: {
244-
checks: [
245-
{ context: "build" },
246-
{ context: "compliance" },
247-
{ context: "lint" },
248-
{ context: "lint_knip" },
249-
{ context: "lint_markdown" },
250-
{ context: "lint_package_json" },
251-
{ context: "lint_packages" },
252-
{ context: "lint_spelling" },
253-
{ context: "prettier" },
254-
{ context: "test" },
255-
],
256-
strict: false,
257-
},
258-
restrictions: null,
230+
allow_deletions: false,
231+
allow_force_pushes: true,
232+
allow_fork_pushes: false,
233+
allow_fork_syncing: true,
234+
block_creations: false,
235+
branch: "main",
236+
enforce_admins: false,
237+
owner: "${options.owner}",
238+
repo: "${options.repository}",
239+
required_conversation_resolution: true,
240+
required_linear_history: false,
241+
required_pull_request_reviews: null,
242+
required_status_checks: {
243+
checks: [
244+
{ context: "build" },
245+
{ context: "compliance" },
246+
{ context: "lint" },
247+
{ context: "lint_knip" },
248+
{ context: "lint_markdown" },
249+
{ context: "lint_package_json" },
250+
{ context: "lint_packages" },
251+
{ context: "lint_spelling" },
252+
{ context: "prettier" },
253+
{ context: "test" },
254+
],
255+
strict: false,
256+
},
257+
restrictions: null,
259258
}
260259
);
261260
`,

0 commit comments

Comments
 (0)