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 8288c9198 [hotfix] fix scheduled daily jdk11 workflow (#813)
8288c9198 is described below
commit 8288c919810f36997b7d1259c29c8ae01dd79ee3
Author: Kerwin <[email protected]>
AuthorDate: Mon Apr 3 14:08:31 2023 +0800
[hotfix] fix scheduled daily jdk11 workflow (#813)
---
.github/workflows/e2e-tests-1.17-jdk11.yml | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/e2e-tests-1.17-jdk11.yml
b/.github/workflows/e2e-tests-1.17-jdk11.yml
index 1590b0926..1f46eb8b9 100644
--- a/.github/workflows/e2e-tests-1.17-jdk11.yml
+++ b/.github/workflows/e2e-tests-1.17-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: