diff options
author | Naoto Ono <[email protected]> | 2024-08-08 21:13:36 +0900 |
---|---|---|
committer | Koichi Sasada <[email protected]> | 2024-08-13 10:28:14 +0900 |
commit | 00e2e24e6fe4f1a3c6dc52f1c8ed17c30351de40 (patch) | |
tree | b3b8148177e9d517f9c61edf97d31fc925621de9 | |
parent | d012f6d49fe9e995bdc6d12e4ebfaa043298d7c2 (diff) |
Launchable: Fix condition for bootstraptest
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/11340
-rw-r--r-- | .github/actions/launchable/setup/action.yml | 4 |
1 files changed, 3 insertions, 1 deletions
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. |