38
38
openjdk_binding_repo :
39
39
description : " The repository of OpenJDK binding, such as {user}/{repo}"
40
40
value : ${{ jobs.binding-refs.outputs.openjdk_binding_repo}}
41
+ openjdk_binding_repo_default :
42
+ description : " The default repository of OpenJDK binding, such as {user}/{repo}"
43
+ value : ${{ jobs.binding-refs.outputs.openjdk_binding_repo_default }}
41
44
openjdk_binding_ref :
42
45
description : " The git ref of OpenJDK binding, such as sha and branch name"
43
46
value : ${{ jobs.binding-refs.outputs.openjdk_binding_ref}}
47
+ openjdk_binding_ref_default :
48
+ description : " The default git ref of OpenJDK binding, such as sha and branch name"
49
+ value : ${{ jobs.binding-refs.outputs.openjdk_binding_ref_default }}
50
+
44
51
jikesrvm_binding_repo :
45
52
description : " The repository of JikesRVM binding, such as {user}/{repo}"
46
53
value : ${{ jobs.binding-refs.outputs.jikesrvm_binding_repo}}
54
+ jikesrvm_binding_repo_default :
55
+ description : " The default repository of JikesRVM binding, such as {user}/{repo}"
56
+ value : ${{ jobs.binding-refs.outputs.jikesrvm_binding_repo_default }}
47
57
jikesrvm_binding_ref :
48
58
description : " The git ref of JikesRVM binding, such as sha and branch name"
49
59
value : ${{ jobs.binding-refs.outputs.jikesrvm_binding_ref}}
60
+ jikesrvm_binding_ref_default :
61
+ description : " The default git ref of JikesRVM binding, such as sha and branch name"
62
+ value : ${{ jobs.binding-refs.outputs.jikesrvm_binding_ref_default }}
63
+
50
64
v8_binding_repo :
51
65
description : " The repository of V8 binding, such as {user}/{repo}"
52
66
value : ${{ jobs.binding-refs.outputs.v8_binding_repo}}
67
+ v8_binding_repo_default :
68
+ description : " The default repository of V8 binding, such as {user}/{repo}"
69
+ value : ${{ jobs.binding-refs.outputs.v8_binding_repo_default }}
53
70
v8_binding_ref :
54
71
description : " The git ref of V8 binding, such as sha and branch name"
55
72
value : ${{ jobs.binding-refs.outputs.v8_binding_ref}}
73
+ v8_binding_ref_default :
74
+ description : " The default git ref of V8 binding, such as sha and branch name"
75
+ value : ${{ jobs.binding-refs.outputs.v8_binding_ref_default }}
76
+
56
77
julia_binding_repo :
57
78
description : " The repository of Julia binding, such as {user}/{repo}"
58
79
value : ${{ jobs.binding-refs.outputs.julia_binding_repo}}
80
+ julia_binding_repo_default :
81
+ description : " The default repository of Julia binding, such as {user}/{repo}"
82
+ value : ${{ jobs.binding-refs.outputs.julia_binding_repo_default }}
59
83
julia_binding_ref :
60
84
description : " The git ref of Julia binding, such as sha and branch name"
61
85
value : ${{ jobs.binding-refs.outputs.julia_binding_ref}}
86
+ julia_binding_ref_default :
87
+ description : " The default git ref of Julia binding, such as sha and branch name"
88
+ value : ${{ jobs.binding-refs.outputs.julia_binding_ref_default }}
89
+
62
90
ruby_binding_repo :
63
91
description : " The repository of Ruby binding, such as {user}/{repo}"
64
92
value : ${{ jobs.binding-refs.outputs.ruby_binding_repo}}
93
+ ruby_binding_repo_default :
94
+ description : " The default repository of Ruby binding, such as {user}/{repo}"
95
+ value : ${{ jobs.binding-refs.outputs.ruby_binding_repo_default }}
65
96
ruby_binding_ref :
66
97
description : " The git ref of Ruby binding, such as sha and branch name"
67
98
value : ${{ jobs.binding-refs.outputs.ruby_binding_ref}}
99
+ ruby_binding_ref_default :
100
+ description : " The default git ref of Ruby binding, such as sha and branch name"
101
+ value : ${{ jobs.binding-refs.outputs.ruby_binding_ref_default }}
68
102
69
103
jobs :
70
104
binding-refs :
@@ -82,15 +116,25 @@ jobs:
82
116
RUBY_BINDING_REF_DEFAULT : master
83
117
outputs :
84
118
openjdk_binding_repo : ${{ steps.print.outputs.openjdk_binding_repo }}
119
+ openjdk_binding_repo_default : ${{ env.OPENJDK_BINDING_REPO_DEFAULT }}
85
120
openjdk_binding_ref : ${{ steps.print.outputs.openjdk_binding_ref }}
121
+ openjdk_binding_ref_default : ${{ env.OPENJDK_BINDING_REF_DEFAULT }}
86
122
jikesrvm_binding_repo : ${{ steps.print.outputs.jikesrvm_binding_repo }}
123
+ jikesrvm_binding_repo_default : ${{ env.JIKESRVM_BINDING_REPO_DEFAULT }}
87
124
jikesrvm_binding_ref : ${{ steps.print.outputs.jikesrvm_binding_ref }}
125
+ jikesrvm_binding_ref_default : ${{ env.JIKESRVM_BINDING_REF_DEFAULT }}
88
126
v8_binding_repo : ${{ steps.print.outputs.v8_binding_repo }}
127
+ v8_binding_repo_default : ${{ env.V8_BINDING_REPO_DEFAULT }}
89
128
v8_binding_ref : ${{ steps.print.outputs.v8_binding_ref }}
129
+ v8_binding_ref_default : ${{ env.V8_BINDING_REF_DEFAULT }}
90
130
julia_binding_repo : ${{ steps.print.outputs.julia_binding_repo }}
131
+ julia_binding_repo_default : ${{ env.JULIA_BINDING_REPO_DEFAULT }}
91
132
julia_binding_ref : ${{ steps.print.outputs.julia_binding_ref }}
133
+ julia_binding_ref_default : ${{ env.JULIA_BINDING_REF_DEFAULT }}
92
134
ruby_binding_repo : ${{ steps.print.outputs.ruby_binding_repo }}
135
+ ruby_binding_repo_default : ${{ env.RUBY_BINDING_REPO_DEFAULT }}
93
136
ruby_binding_ref : ${{ steps.print.outputs.ruby_binding_ref }}
137
+ ruby_binding_ref_default : ${{ env.RUBY_BINDING_REF_DEFAULT }}
94
138
steps :
95
139
- name : Check binding revisions
96
140
0 commit comments