This is an automated email from the ASF dual-hosted git repository.
lindong pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink-ml.git
The following commit(s) were added to refs/heads/master by this push:
new 6d69f0a4 [FLINK-31948] Supports triggering CI manually
6d69f0a4 is described below
commit 6d69f0a4e6b2201d932f5a4edf7acb4c31fc3396
Author: JiangXin <[email protected]>
AuthorDate: Thu Jun 8 21:22:39 2023 +0800
[FLINK-31948] Supports triggering CI manually
This closes #236.
---
.github/workflows/java-tests.yml | 3 ++-
.github/workflows/python-tests.yml | 3 ++-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/java-tests.yml b/.github/workflows/java-tests.yml
index e54a4693..effcb828 100644
--- a/.github/workflows/java-tests.yml
+++ b/.github/workflows/java-tests.yml
@@ -22,10 +22,11 @@ on:
branches: [ '**' ]
pull_request:
branches: [ '**' ]
+ workflow_dispatch:
jobs:
java-tests:
- if: (github.repository == 'apache/flink-ml')
+ if: github.repository == 'apache/flink-ml' || github.event_name ==
'workflow_dispatch'
runs-on: ubuntu-latest
strategy:
matrix:
diff --git a/.github/workflows/python-tests.yml
b/.github/workflows/python-tests.yml
index 90130697..602cfcfe 100644
--- a/.github/workflows/python-tests.yml
+++ b/.github/workflows/python-tests.yml
@@ -22,10 +22,11 @@ on:
branches: [ '**' ]
pull_request:
branches: [ '**' ]
+ workflow_dispatch:
jobs:
python-tests:
- if: (github.repository == 'apache/flink-ml')
+ if: github.repository == 'apache/flink-ml' || github.event_name ==
'workflow_dispatch'
name: Python ${{ matrix.python-version }} tests on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy: