This is an automated email from the ASF dual-hosted git repository.

duanzhengqiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shardingsphere.git


The following commit(s) were added to refs/heads/master by this push:
     new 13f9e914466 Fix : fix the incorrect inputs format (#32352)
13f9e914466 is described below

commit 13f9e9144664cc1945294e5929b4376edc1ead4b
Author: 孙念君 Nianjun Sun <[email protected]>
AuthorDate: Thu Aug 1 15:43:08 2024 +0800

    Fix : fix the incorrect inputs format (#32352)
---
 .github/workflows/nightly-ci-dynamic.yml            | 4 ++--
 .github/workflows/nightly-e2e-operation-dynamic.yml | 4 ++--
 .github/workflows/nightly-e2e-sql-dynamic.yml       | 8 ++++----
 3 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/.github/workflows/nightly-ci-dynamic.yml 
b/.github/workflows/nightly-ci-dynamic.yml
index 1bb3e6da904..ca6b480f574 100644
--- a/.github/workflows/nightly-ci-dynamic.yml
+++ b/.github/workflows/nightly-ci-dynamic.yml
@@ -23,11 +23,11 @@ on:
       java-version:
         description: 'JDK Version'
         required: false
-        default: "[21]"
+        default: "[ '21' ]"
       os:
         description: 'System OS'
         required: false
-        default: "['ubuntu-latest']"
+        default: "[ 'ubuntu-latest' ]"
       job:
         description: 'Job Name'
         required: true
diff --git a/.github/workflows/nightly-e2e-operation-dynamic.yml 
b/.github/workflows/nightly-e2e-operation-dynamic.yml
index f6565c0487b..2337cd7ba3c 100644
--- a/.github/workflows/nightly-e2e-operation-dynamic.yml
+++ b/.github/workflows/nightly-e2e-operation-dynamic.yml
@@ -23,11 +23,11 @@ on:
       java-version:
         description: 'java-version'
         required: true
-        default: "[ 11, 21 ]"
+        default: "[ '11', '21' ]"
       operation:
         description: 'operation'
         required: true
-        default: "[ transaction, pipeline, showprocesslist ]"
+        default: "[ 'transaction', 'pipeline', 'showprocesslist' ]"
       image:
         description: 'image'
         required: true
diff --git a/.github/workflows/nightly-e2e-sql-dynamic.yml 
b/.github/workflows/nightly-e2e-sql-dynamic.yml
index 6ffd93717c2..8438a095cc1 100644
--- a/.github/workflows/nightly-e2e-sql-dynamic.yml
+++ b/.github/workflows/nightly-e2e-sql-dynamic.yml
@@ -23,19 +23,19 @@ on:
       adapter:
         description: 'adapter'
         required: true
-        default: "[ proxy, jdbc ]"
+        default: "[ 'proxy', 'jdbc' ]"
       mode:
         description: 'mode'
         required: true
-        default: "[ Standalone, Cluster ]"
+        default: "[ 'Standalone', 'Cluster' ]"
       database:
         description: 'database'
         required: true
-        default: "[ MySQL, PostgreSQL, openGauss ]"
+        default: "[ 'MySQL', 'PostgreSQL', 'openGauss' ]"
       scenario:
         description: 'scenario'
         required: true
-        default: "[ empty_rules ]"
+        default: "[ 'empty_rules', 'distsql_rdl' ]"
       additional-options:
         description: 'additional-options'
         required: false

Reply via email to