forked from konveyor/tackle2-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🌱 Setup nightly workflows for repo and global CI
Setup new `nightly-*.yaml` workflows that reuse the base PR/on-merge workflows. It's marginally easier to keeps the scheduled runs in a separate workflow from the push / pull_request workflows. We want global nightlys to help keep any problems that may come up in e2e UI tests to a minimum. Fixes: konveyor#1986 Signed-off-by: Scott J Dickerson <[email protected]>
- Loading branch information
Showing
4 changed files
with
28 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
name: Nightly CI - main (global konveyor CI) | ||
|
||
on: | ||
schedule: | ||
- cron: "35 5 * * *" # every day @ 5:35am UTC | ||
|
||
workflow_dispatch: | ||
|
||
jobs: | ||
nightly: | ||
uses: ./.github/workflows/ci-global.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
name: Nightly CI - main (repo level) | ||
|
||
on: | ||
schedule: | ||
- cron: "35 5 * * *" # every day @ 5:35am UTC | ||
|
||
workflow_dispatch: | ||
|
||
jobs: | ||
nightly: | ||
uses: ./.github/workflows/ci-repo.yml |