@@ -214,8 +214,7 @@ export function createWorkflows(options: Options) {
214
214
} ,
215
215
run : `
216
216
if pnpm run should-semantic-release ; then
217
- pnpm release-it --verbose
218
- gh workflow run post-release.yml
217
+ pnpm release-it --verbose
219
218
fi` ,
220
219
} ,
221
220
{
@@ -228,34 +227,34 @@ export function createWorkflows(options: Options) {
228
227
github.request(
229
228
\`PUT /repos/${ options . owner } /${ options . repository } /branches/main/protection\`,
230
229
{
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,
259
258
}
260
259
);
261
260
` ,
0 commit comments