-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Try splitting workflow into two files
- Loading branch information
1 parent
068c5e8
commit 1475b6e
Showing
2 changed files
with
11 additions
and
14 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
10 changes: 10 additions & 0 deletions
10
.github/workflows/pir_end_to_end_tests_scheduled_and_release_branches_trigger.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,10 @@ | ||
name: PIR E2E Tests Scheduled and release branches trigger | ||
|
||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 3 * * 1-5' # 3AM UTC offsetted to legacy to avoid action-junit-report@v4 bug | ||
pull_request: | ||
|
||
jobs: | ||
call-sub-workflow: | ||
uses: ./.github/workflows/pir_end_end_tests.yml |