Skip to content

schedule actions to run at least 3 times a week #5369

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/1-unit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,13 @@
name: Unit Tests

on:
# build on push
push:
# build on pull requests
branches: [ master ]
pull_request:
branches: [ master ]
types: [ opened, synchronize, reopened ]
schedule:
- cron: '30 1 * * 1,3,5'

env:
# openwhisk env
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/2-system.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,13 @@
name: System Tests

on:
# build on push
push:
# build on pull requests
branches: [ master ]
pull_request:
branches: [ master ]
types: [ opened, synchronize, reopened ]
schedule:
- cron: '30 2 * * 1,3,5'

env:
# openwhisk env
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/3-multi-runtime.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,13 @@
name: MultiRuntime Tests

on:
# build on push
push:
# build on pull requests
branches: [ master ]
pull_request:
branches: [ master ]
types: [ opened, synchronize, reopened ]
schedule:
- cron: '30 3 * * 1,3,5'

env:
# openwhisk env
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/4-standalone.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,13 @@
name: Standalone Tests

on:
# build on push
push:
# build on pull requests
branches: [ master ]
pull_request:
branches: [ master ]
types: [ opened, synchronize, reopened ]
schedule:
- cron: '30 4 * * 1,3,5'

env:
# openwhisk env
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/5-scheduler.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,13 @@
name: Scheduler Tests

on:
# build on push
push:
# build on pull requests
branches: [ master ]
pull_request:
branches: [ master ]
types: [ opened, synchronize, reopened ]
schedule:
- cron: '30 5 * * 1,3,5'

env:
# openwhisk env
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/6-performance.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,13 @@
name: Performance Tests

on:
# build on push
push:
# build on pull requests
branches: [ master ]
pull_request:
branches: [ master ]
types: [ opened, synchronize, reopened ]
schedule:
- cron: '30 6 * * 1,3,5'

env:
# openwhisk env
Expand Down