mirror of
https://github.com/ruby/ruby.git
synced 2025-09-15 16:44:01 +02:00
Launchable: Fix condition for bootstraptest
This commit is contained in:
parent
d012f6d49f
commit
00e2e24e6f
Notes:
git
2024-08-13 01:28:32 +00:00
1 changed files with 3 additions and 1 deletions
4
.github/actions/launchable/setup/action.yml
vendored
4
.github/actions/launchable/setup/action.yml
vendored
|
@ -63,7 +63,9 @@ runs:
|
||||||
${{
|
${{
|
||||||
(github.repository == 'ruby/ruby' ||
|
(github.repository == 'ruby/ruby' ||
|
||||||
(github.repository != 'ruby/ruby' && env.LAUNCHABLE_TOKEN)) &&
|
(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.
|
# Launchable CLI requires Python and Java.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue