Skip to content

Commit f2f28f5

Browse files
committed
-New scheduled workflow which will trigger unstable build and package workflow
1 parent 27cd071 commit f2f28f5

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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+
trigger-unstable-tests:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout code
13+
uses: actions/checkout@v4
14+
with:
15+
ref: unstable
16+
17+
- name: Trigger pre-merge workflow
18+
uses: benc-uk/workflow-dispatch@v1
19+
with:
20+
workflow: pre-merge.yml
21+
ref: unstable
22+
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)