Skip to content

Commit 943a424

Browse files
authored
Merge pull request #4 from valeria-raif/RED-160142-scheduled-workflow
RED-160142 Added scheduled workflow to trigger unstable versions packaging
2 parents 27cd071 + e7f1909 commit 943a424

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)