We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27cd071 commit f2f28f5Copy full SHA for f2f28f5
.github/workflows/nightly-unstable-test.yml
@@ -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
20
+ workflow: pre-merge.yml
21
22
+ token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments