Skip to content

Commit 9900929

Browse files
authored
New scheduled workflow which will trigger the unstable build and package workflow (#457)
1 parent 7eaf5cd commit 9900929

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Nightly Unstable Build and Package
2+
3+
on:
4+
schedule:
5+
- cron: '0 1 * * *' # Run every day at 1:00 AM UTC
6+
workflow_dispatch: # Allow manual triggering
7+
8+
jobs:
9+
build-and-test-unstable:
10+
uses: ./.github/workflows/pre-merge.yml@unstable
11+
with:
12+
ref: 'unstable'

0 commit comments

Comments
 (0)