Skip to content

Commit

Permalink
[Internal] remove default worker for monorepo release flow
Browse files Browse the repository at this point in the history
  • Loading branch information
mpoiriert committed Jun 30, 2024
1 parent c6b99d4 commit 8d87db4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion monorepo-builder.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
use Symplify\MonorepoBuilder\Release\ReleaseWorker;

return static function (MBConfig $mbConfig): void {
$mbConfig::disableDefaultWorkers();

$mbConfig->packageDirectories([
__DIR__.'/packages',
]);
Expand Down Expand Up @@ -38,9 +40,10 @@

// What is the release workflow

$mbConfig->isDisableDefaultWorkers();

$mbConfig->workers([
ReleaseWorker\SetCurrentMutualDependenciesReleaseWorker::class,
ReleaseWorker\AddTagToChangelogReleaseWorker::class,
DrawReleaseWorker\TagCurrentBranchReleaseWorker::class,
ReleaseWorker\PushTagReleaseWorker::class,
ReleaseWorker\SetNextMutualDependenciesReleaseWorker::class,
Expand Down

0 comments on commit 8d87db4

Please sign in to comment.