This is an automated email from the ASF dual-hosted git repository.
zhonghongsheng 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 ff98d8c1767 Support customized operation for nightly-e2e-operation.yml
(#37846)
ff98d8c1767 is described below
commit ff98d8c176790e52be198a5c1777d12f3b05f66d
Author: Hongsheng Zhong <[email protected]>
AuthorDate: Mon Jan 26 11:47:25 2026 +0800
Support customized operation for nightly-e2e-operation.yml (#37846)
---
.github/workflows/nightly-e2e-operation.yml | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/nightly-e2e-operation.yml
b/.github/workflows/nightly-e2e-operation.yml
index 9304ded26d0..99159606af8 100644
--- a/.github/workflows/nightly-e2e-operation.yml
+++ b/.github/workflows/nightly-e2e-operation.yml
@@ -21,6 +21,11 @@ on:
schedule:
- cron: '0 19 * * 1-5' # Once a day between Monday and Friday. UTC time
workflow_dispatch:
+ inputs:
+ operation:
+ description: 'operation'
+ required: true
+ default: '[ "transaction", "pipeline", "showprocesslist" ]'
concurrency:
group: nightly-e2e-operation-${{ github.workflow }}-${{ github.ref }}
@@ -45,7 +50,7 @@ jobs:
fail-fast: false
matrix:
java-version: [ 17, 21 ]
- operation: [ transaction, pipeline, showprocesslist ]
+ operation: ${{ fromJson(github.event.inputs.operation || '[
"transaction", "pipeline", "showprocesslist" ]') }}
image: [
{ type: "e2e.docker.database.mysql.images", version: "mysql:5.7" },
{ type: "e2e.docker.database.mysql.images", version: "mysql:8.0" },