1
0
mirror of https://gitea.com/gitea/act synced 2026-05-01 01:27:48 +02:00

fix: add default values in vmInput

This commit is contained in:
Denys Vitali
2020-07-20 21:17:12 +02:00
parent 85a47838fd
commit cc369e2f73

View File

@@ -296,6 +296,14 @@ func (sc *StepContext) vmEnv() func(*otto.Otto) {
func (sc *StepContext) vmInputs() func(*otto.Otto) {
inputs := make(map[string]string)
// Set Defaults
if sc.Action != nil {
for k, input := range sc.Action.Inputs {
inputs[k] = input.Default
}
}
for k, v := range sc.Step.With {
inputs[k] = v
}