From 53427119199ee1fdf9706abbc9bdc493ab6fff08 Mon Sep 17 00:00:00 2001 From: Jacob Wujciak-Jens Date: Tue, 12 Dec 2023 11:28:58 -0800 Subject: [PATCH] Enable custom inputs on fuzzer job (#7946) Summary: A minor fix following https://github.com/facebookincubator/velox/issues/7842 to enable the inputs in the actions web ui. Pull Request resolved: https://github.com/facebookincubator/velox/pull/7946 Reviewed By: kagamiori Differential Revision: D52001596 Pulled By: kgpai fbshipit-source-id: 7d9c026a2852d495f129e3c9c7345d03bf51ac8b --- .github/workflows/scheduled.yml | 31 ++++++++++++++++--------------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/.github/workflows/scheduled.yml b/.github/workflows/scheduled.yml index 60e4a1a0ef15..2608825568b0 100644 --- a/.github/workflows/scheduled.yml +++ b/.github/workflows/scheduled.yml @@ -23,21 +23,22 @@ on: - cron: '0 3 * * *' workflow_dispatch: - ref: - description: 'Ref to checkout out' - default: 'main' - numThreads: - description: 'Number of threads' - default: 16 - maxHighMemJobs: - description: 'Number of high memory jobs' - default: 8 - maxLinkJobs: - description: 'Maximum number of link jobs' - default: 4 - extraCMakeFlags: - description: 'Additional CMake flags' - default: '' + inputs: + ref: + description: 'Ref to checkout out' + default: 'main' + numThreads: + description: 'Number of threads' + default: 16 + maxHighMemJobs: + description: 'Number of high memory jobs' + default: 8 + maxLinkJobs: + description: 'Maximum number of link jobs' + default: 4 + extraCMakeFlags: + description: 'Additional CMake flags' + default: '' defaults: run: