We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7c0c809 + 6bf99de commit 835cb66Copy full SHA for 835cb66
1 file changed
src/ComposerPlugin.php
@@ -137,6 +137,11 @@ public function installHooks(Event $event): void
137
$this->io->write(' <comment>plugin is disabled</comment>');
138
return;
139
}
140
+
141
+ if (getenv('CI') === 'true') {
142
+ $this->io->write(' <comment>disabling plugin due to CI-environment</comment>');
143
+ return;
144
+ }
145
146
$this->detectConfiguration();
147
$this->detectGitDir();
0 commit comments