We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc918e4 commit a7a71dcCopy full SHA for a7a71dc
1 file changed
.github/workflows/nightly-9.yml
@@ -0,0 +1,24 @@
1
+---
2
+name: "nightly-9"
3
+on:
4
+ schedule:
5
+ - cron: '42 5 * * *'
6
+ workflow_dispatch:
7
+
8
+jobs:
9
+ nightly-main:
10
+ name: "dispatch-nightly-9"
11
+ runs-on: ubuntu-24.04
12
+ permissions:
13
+ actions: write
14
+ steps:
15
+ - name: Checkout '9'
16
+ uses: actions/checkout@v6
17
+ with:
18
+ ref: '9'
19
20
+ - name: Execute 'ci.yml' on '9'
21
+ env:
22
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23
+ run: |
24
+ gh workflow run ci.yml --ref 9
0 commit comments