Skip to content

Commit 1993a2c

Browse files
committed
WIP: m138 CI
Change-Id: I55e16439610d699ce62dee35143abb3b646ad127
1 parent 761a646 commit 1993a2c

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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_m138:
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

Comments
 (0)