File tree 3 files changed +10
-0
lines changed
3 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 23
23
jobs :
24
24
getMplHeadVersion :
25
25
uses : ./.github/workflows/mpl_head_version.yml
26
+ with :
27
+ mpl-head : false
26
28
dafny-interop-java :
27
29
needs : getMplHeadVersion
28
30
uses : ./.github/workflows/dafny_interop_java.yml
Original file line number Diff line number Diff line change 16
16
getMplHeadVersion :
17
17
if : github.event_name != 'schedule' || github.repository_owner == 'aws'
18
18
uses : ./.github/workflows/mpl_head_version.yml
19
+ with :
20
+ mpl-head : true
19
21
mpl-head-ci-format :
20
22
needs : getVersion
21
23
if : github.event_name != 'schedule' || github.repository_owner == 'aws'
Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ name: MPL HEAD Version
5
5
6
6
on :
7
7
workflow_call :
8
+ inputs :
9
+ mpl-head :
10
+ description : " Using MPL HEAD?"
11
+ required : true
12
+ type : boolean
8
13
outputs :
9
14
version :
10
15
description : " The dafny version for verify"
20
25
with :
21
26
submodules : recursive
22
27
- name : Update MPL submodule locally if requested
28
+ if : ${{inputs.mpl-head}} == 'true'
23
29
working-directory : submodules/MaterialProviders
24
30
shell : bash
25
31
run : |
You can’t perform that action at this time.
0 commit comments