We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09b779b commit ec392cdCopy full SHA for ec392cd
bin/release
@@ -391,7 +391,10 @@ try {
391
);
392
393
// Disable protection
394
- updateBranchProtection(enabled: false);
+ $console->task(
395
+ label: 'Disabling branch protection',
396
+ handler: fn () => updateBranchProtection(enabled: false),
397
+ );
398
399
// Push tags
400
$console->task(
@@ -415,7 +418,12 @@ try {
415
418
},
416
419
417
420
- updateBranchProtection(enabled: true);
421
+ // Enable branch protection
422
423
+ label: 'Enabling branch protection',
424
+ handler: fn () => updateBranchProtection(enabled: true),
425
426
+
427
triggerSubsplit();
428
429
$console->success(sprintf(
0 commit comments