From 00e2e24e6fe4f1a3c6dc52f1c8ed17c30351de40 Mon Sep 17 00:00:00 2001 From: Naoto Ono Date: Thu, 8 Aug 2024 21:13:36 +0900 Subject: [PATCH] Launchable: Fix condition for bootstraptest --- .github/actions/launchable/setup/action.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/actions/launchable/setup/action.yml b/.github/actions/launchable/setup/action.yml index 919c022ce4..4b469ccd64 100644 --- a/.github/actions/launchable/setup/action.yml +++ b/.github/actions/launchable/setup/action.yml @@ -63,7 +63,9 @@ runs: ${{ (github.repository == 'ruby/ruby' || (github.repository != 'ruby/ruby' && env.LAUNCHABLE_TOKEN)) && - (inputs.test-task == 'check' || inputs.test-task == 'test-all') + (inputs.test-task == 'check' || + inputs.test-task == 'test-all' || + inputs.test-task == 'test') }} # Launchable CLI requires Python and Java.