We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f086c38 commit 330ae36Copy full SHA for 330ae36
.github/workflows/nightly_trigger_m138.yaml
@@ -0,0 +1,26 @@
1
+name: nightly_trigger_m138
2
+
3
+on:
4
+ schedule:
5
+ # GMT timezone.
6
+ - cron: '0 10 * * *'
7
+ workflow_dispatch:
8
9
+jobs:
10
+ trigger_main:
11
+ permissions:
12
+ actions: write
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - name: Checkout
16
+ uses: actions/checkout@v4
17
+ with:
18
+ fetch-depth: 1
19
+ ref:
20
+ persist-credentials: false
21
+ - name: Trigger Nightly
22
+ run: |
23
+ set -x
24
+ gh workflow run linux --ref feature/rebase_m138 -f nightly=true
25
+ env:
26
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments