This is an automated email from the ASF dual-hosted git repository. juzhiyuan pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/apisix-dashboard.git
The following commit(s) were added to refs/heads/master by this push: new b94b45574 feat(workflows/e2e): run at 2AM every day, use dev image (#3072) b94b45574 is described below commit b94b4557494c0b38b88ff367963c97a803137c58 Author: YYYoung <isk...@outlook.com> AuthorDate: Tue May 20 15:51:18 2025 +0800 feat(workflows/e2e): run at 2AM every day, use dev image (#3072) Co-authored-by: Copilot <175728472+copi...@users.noreply.github.com> --- .github/workflows/e2e.yml | 5 +++++ e2e/server/docker-compose.common.yml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 4ccef7fac..c567878a1 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -8,6 +8,11 @@ on: types: [labeled, synchronize] branches: - "**" + schedule: + # Run at 2:00 AM UTC every day + # This should be later than the update time of `apache/apisix:dev` + # Ref: https://github.com/apache/apisix-docker/blob/master/.github/workflows/apisix_dev_push_docker_hub.yaml#L7C15-L7C16 + - cron: '0 2 * * *' concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} diff --git a/e2e/server/docker-compose.common.yml b/e2e/server/docker-compose.common.yml index d165416aa..729653369 100644 --- a/e2e/server/docker-compose.common.yml +++ b/e2e/server/docker-compose.common.yml @@ -17,7 +17,7 @@ services: apisix: - image: 'apache/apisix:3.12.0-debian' + image: 'apache/apisix:dev' restart: always volumes: - ./apisix_conf.yml:/usr/local/apisix/conf/config.yaml:ro