This is an automated email from the ASF dual-hosted git repository.
young 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 a5fd69023 fix(workflow): scheduled test (#3077)
a5fd69023 is described below
commit a5fd69023290ad5bb735859695817bcd1c4626e0
Author: YYYoung <[email protected]>
AuthorDate: Fri May 23 13:55:28 2025 +0800
fix(workflow): scheduled test (#3077)
---
.github/workflows/e2e.yml | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml
index c567878a1..50c15882b 100644
--- a/.github/workflows/e2e.yml
+++ b/.github/workflows/e2e.yml
@@ -20,7 +20,8 @@ concurrency:
jobs:
test:
- if: ${{ contains(github.event.pull_request.labels.*.name, 'e2e-test') }}
+ # only run when e2e-test label is added or scheduled
+ if: ${{ contains(github.event.pull_request.labels.*.name, 'e2e-test') ||
github.event_name == 'schedule' }}
timeout-minutes: 40
runs-on: ubuntu-latest
steps: