Skip to content

Commit 06a4efa

Browse files
committed
Execute multi-Java test suite on Wednesday and Sunday only
Used to be every day. It may be too much for our GHA quota, so we reduce the frequency. It should do the job as well. (cherry picked from commit 84ddee0)
1 parent 6bec435 commit 06a4efa

4 files changed

+4
-4
lines changed

.github/workflows/test-3.11-alpha.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Test against RabbitMQ 3.11 alpha
22

33
on:
44
schedule:
5-
- cron: '0 4 * * *'
5+
- cron: '0 4 ? * SUN,WED'
66
pull_request:
77
branches:
88
- 5.x.x-stable

.github/workflows/test-native-image.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Test GraalVM native image
22

33
on:
44
schedule:
5-
- cron: '0 4 * * *'
5+
- cron: '0 4 ? * SUN,WED'
66
workflow_dispatch:
77

88
env:

.github/workflows/test-supported-java-versions-5.x.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Test against supported Java versions (5.x)
22

33
on:
44
schedule:
5-
- cron: '0 4 * * *'
5+
- cron: '0 4 ? * SUN,WED'
66
workflow_dispatch:
77

88
env:

.github/workflows/test-supported-java-versions-main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Test against supported Java versions (main)
22

33
on:
44
schedule:
5-
- cron: '0 4 * * *'
5+
- cron: '0 4 ? * SUN,WED'
66
workflow_dispatch:
77

88
env:

0 commit comments

Comments
 (0)