From 84abdc3fc992b5cc2789ce5a2590a641958ae62e Mon Sep 17 00:00:00 2001 From: Haralan Dobrev Date: Wed, 6 May 2020 21:59:39 +0300 Subject: [PATCH] Make default install non-interactive Composer should not ask interactive questions in the non-interactive session of GitHub Actions. With the `--no-interaction` flag `composer install` would either proceed with recommended approach or issue a warning instead of hanging the build waiting for input. --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 824c8d1..c3bf2e9 100644 --- a/action.yml +++ b/action.yml @@ -4,7 +4,7 @@ inputs: command: description: 'Composer command to run' required: true - default: install + default: install --no-interaction outputs: time: description: 'The time the action was run'