From ff92aac66eab559b7ec1965b10d4fefa379c6b5f Mon Sep 17 00:00:00 2001 From: Gaius Date: Tue, 19 Apr 2022 22:03:48 +0800 Subject: [PATCH] chore: add schedule cron with e2e testing (#1262) Signed-off-by: Gaius --- .github/workflows/ci.yml | 2 ++ .github/workflows/compatibility-e2e.yml | 2 ++ .github/workflows/e2e.yml | 2 ++ 3 files changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0fc067eb6..fcd688e52 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,6 +7,8 @@ on: pull_request: branches: [ main, release-* ] paths-ignore: [ '**.md', '**.png', '**.jpg', '**.svg', '**/docs/**' ] + schedule: + - cron: '0 4 * * *' env: GO_VERSION: 1.17 diff --git a/.github/workflows/compatibility-e2e.yml b/.github/workflows/compatibility-e2e.yml index cec1839e3..3bb8e09b2 100644 --- a/.github/workflows/compatibility-e2e.yml +++ b/.github/workflows/compatibility-e2e.yml @@ -7,6 +7,8 @@ on: pull_request: branches: [main, release-*] paths-ignore: ["**.md", "**.png", "**.jpg", "**.svg", "**/docs/**"] + schedule: + - cron: '0 4 * * *' env: GO_VERSION: 1.17 diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 1f9cbcb4e..4a44f34b8 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -7,6 +7,8 @@ on: pull_request: branches: [main, release-*] paths-ignore: ["**.md", "**.png", "**.jpg", "**.svg", "**/docs/**"] + schedule: + - cron: '0 4 * * *' env: GO_VERSION: 1.17