From 5040e2f4b6b8d1f9353a47925105065458448628 Mon Sep 17 00:00:00 2001 From: clementzarch Date: Fri, 8 Sep 2023 10:55:39 +0200 Subject: [PATCH] do not use github api, to avoid hitting the API limit when building 3 satellites in a row --- src/PHP/ComposerInit.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/PHP/ComposerInit.php b/src/PHP/ComposerInit.php index 146c7a5..51bf5ea 100644 --- a/src/PHP/ComposerInit.php +++ b/src/PHP/ComposerInit.php @@ -17,7 +17,8 @@ public function __toString(): string return (string) new Dockerfile\Run(sprintf( <<<'RUN' set -ex \ - && composer init --no-interaction --name=%s && pwd + && composer init --no-interaction --name=%s \ + && composer config use-github-api false RUN, $this->name ));