Skip to content

Commit 11a2b17

Browse files
committed
add daily ci
1 parent f550020 commit 11a2b17

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This workflow performs tests in Java.
22
name: ESDK JavaScript CI Tests
33

4-
on: [pull_request]
4+
on: [pull_request, workflow_call]
55

66
jobs:
77
testCI:

.github/workflows/daily_ci.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# This workflow runs every weekday at 15:00 UTC (8AM PDT)
2+
name: Daily CI
3+
4+
on:
5+
schedule:
6+
- cron: "00 15 * * 1-5"
7+
8+
jobs:
9+
DAILY_CI:
10+
# Don't run the cron builds on forks
11+
if: github.event_name != 'schedule' || github.repository_owner == 'aws'
12+
uses: ./.github/workflows/ci.yml

0 commit comments

Comments
 (0)