Skip to content

Commit 54a0499

Browse files
authored
Dispatch mmtk-dev-env workflow (#397)
* Dispatch workflow to mmtk-dev-env and wait * Trigger workflow from a branch * Use mmtk-dev-env main. Check every 30s * Change the workflow trigger to pushing to master.
1 parent 2640ce1 commit 54a0499

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/mmtk-dev-env.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Check mmtk-dev-env
2+
3+
# Triggerred when a new commit is pushed to master
4+
on:
5+
push:
6+
branches:
7+
- master
8+
9+
jobs:
10+
# Trigger ci.yml from mmtk/mmtk-dev-env to make sure mmtk-core can build with mmtk-dev-env.
11+
check-mmtk-dev-env:
12+
runs-on: ubuntu-18.04
13+
steps:
14+
- uses: convictional/[email protected]
15+
with:
16+
owner: mmtk
17+
repo: mmtk-dev-env
18+
github_token: ${{ secrets.CI_ACCESS_TOKEN }}
19+
workflow_file_name: ci.yml
20+
ref: main
21+
wait_interval: 30
22+
inputs: '{}'
23+
propagate_failure: true
24+
trigger_workflow: true
25+
wait_workflow: true

0 commit comments

Comments
 (0)