This is an automated email from the ASF dual-hosted git repository.
lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-paimon.git
The following commit(s) were added to refs/heads/master by this push:
new b3ea5a31a [hotfix] fix scheduled daily jdk11 workflow (#808)
b3ea5a31a is described below
commit b3ea5a31a845ceb83f45b282e9941e13c637df91
Author: legendtkl <[email protected]>
AuthorDate: Mon Apr 3 10:08:06 2023 +0800
[hotfix] fix scheduled daily jdk11 workflow (#808)
---
.github/workflows/e2e-tests-1.14-jdk11.yml | 4 +++-
.github/workflows/e2e-tests-1.15-jdk11.yml | 4 +++-
.github/workflows/e2e-tests-1.16-jdk11.yml | 4 +++-
.github/workflows/unitcase-flink-jdk11.yml | 4 +++-
.github/workflows/unitcase-jdk11.yml | 4 +++-
5 files changed, 15 insertions(+), 5 deletions(-)
diff --git a/.github/workflows/e2e-tests-1.14-jdk11.yml
b/.github/workflows/e2e-tests-1.14-jdk11.yml
index 31cb23472..8b30734f1 100644
--- a/.github/workflows/e2e-tests-1.14-jdk11.yml
+++ b/.github/workflows/e2e-tests-1.14-jdk11.yml
@@ -31,7 +31,9 @@ env:
jobs:
build:
- if: contains(github.event.comment.html_url, '/pull/') &&
contains(github.event.comment.body, '/jdk11')
+ if: |
+ github.event_name == 'schedule' ||
+ (contains(github.event.comment.html_url, '/pull/') &&
contains(github.event.comment.body, '/jdk11'))
runs-on: ubuntu-latest
steps:
diff --git a/.github/workflows/e2e-tests-1.15-jdk11.yml
b/.github/workflows/e2e-tests-1.15-jdk11.yml
index f94d7d77c..e46173118 100644
--- a/.github/workflows/e2e-tests-1.15-jdk11.yml
+++ b/.github/workflows/e2e-tests-1.15-jdk11.yml
@@ -31,7 +31,9 @@ env:
jobs:
build:
- if: contains(github.event.comment.html_url, '/pull/') &&
contains(github.event.comment.body, '/jdk11')
+ if: |
+ github.event_name == 'schedule' ||
+ (contains(github.event.comment.html_url, '/pull/') &&
contains(github.event.comment.body, '/jdk11'))
runs-on: ubuntu-latest
steps:
diff --git a/.github/workflows/e2e-tests-1.16-jdk11.yml
b/.github/workflows/e2e-tests-1.16-jdk11.yml
index cfc3c30eb..b7acacaca 100644
--- a/.github/workflows/e2e-tests-1.16-jdk11.yml
+++ b/.github/workflows/e2e-tests-1.16-jdk11.yml
@@ -31,7 +31,9 @@ env:
jobs:
build:
- if: contains(github.event.comment.html_url, '/pull/') &&
contains(github.event.comment.body, '/jdk11')
+ if: |
+ github.event_name == 'schedule' ||
+ (contains(github.event.comment.html_url, '/pull/') &&
contains(github.event.comment.body, '/jdk11'))
runs-on: ubuntu-latest
steps:
diff --git a/.github/workflows/unitcase-flink-jdk11.yml
b/.github/workflows/unitcase-flink-jdk11.yml
index 9ecc6bca0..e9184bd09 100644
--- a/.github/workflows/unitcase-flink-jdk11.yml
+++ b/.github/workflows/unitcase-flink-jdk11.yml
@@ -31,7 +31,9 @@ env:
jobs:
build:
- if: contains(github.event.comment.html_url, '/pull/') &&
contains(github.event.comment.body, '/jdk11')
+ if: |
+ github.event_name == 'schedule' ||
+ (contains(github.event.comment.html_url, '/pull/') &&
contains(github.event.comment.body, '/jdk11'))
runs-on: ubuntu-latest
steps:
diff --git a/.github/workflows/unitcase-jdk11.yml
b/.github/workflows/unitcase-jdk11.yml
index 5bc703b3f..33f6c35cd 100644
--- a/.github/workflows/unitcase-jdk11.yml
+++ b/.github/workflows/unitcase-jdk11.yml
@@ -31,7 +31,9 @@ env:
jobs:
build:
- if: contains(github.event.comment.html_url, '/pull/') &&
contains(github.event.comment.body, '/jdk11')
+ if: |
+ github.event_name == 'schedule' ||
+ (contains(github.event.comment.html_url, '/pull/') &&
contains(github.event.comment.body, '/jdk11'))
runs-on: ubuntu-latest
steps: