We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f550020 commit 11a2b17Copy full SHA for 11a2b17
.github/workflows/ci.yml
@@ -1,7 +1,7 @@
1
# This workflow performs tests in Java.
2
name: ESDK JavaScript CI Tests
3
4
-on: [pull_request]
+on: [pull_request, workflow_call]
5
6
jobs:
7
testCI:
.github/workflows/daily_ci.yml
@@ -0,0 +1,12 @@
+# This workflow runs every weekday at 15:00 UTC (8AM PDT)
+name: Daily CI
+
+on:
+ schedule:
+ - cron: "00 15 * * 1-5"
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