You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: pkg/model/action.go
+13-11
Original file line number
Diff line number
Diff line change
@@ -49,17 +49,19 @@ const (
49
49
50
50
// ActionRuns are a field in Action
51
51
typeActionRunsstruct {
52
-
UsingActionRunsUsing`yaml:"using"`
53
-
Envmap[string]string`yaml:"env"`
54
-
Mainstring`yaml:"main"`
55
-
Prestring`yaml:"pre"`
56
-
PreIfstring`yaml:"pre-if"`
57
-
Poststring`yaml:"post"`
58
-
PostIfstring`yaml:"post-if"`
59
-
Imagestring`yaml:"image"`
60
-
Entrypointstring`yaml:"entrypoint"`
61
-
Args []string`yaml:"args"`
62
-
Steps []Step`yaml:"steps"`
52
+
UsingActionRunsUsing`yaml:"using"`
53
+
Envmap[string]string`yaml:"env"`
54
+
Mainstring`yaml:"main"`
55
+
Prestring`yaml:"pre"`
56
+
PreIfstring`yaml:"pre-if"`
57
+
Poststring`yaml:"post"`
58
+
PostIfstring`yaml:"post-if"`
59
+
Imagestring`yaml:"image"`
60
+
PreEntrypointstring`yaml:"pre-entrypoint"`
61
+
Entrypointstring`yaml:"entrypoint"`
62
+
PostEntrypointstring`yaml:"post-entrypoint"`
63
+
Args []string`yaml:"args"`
64
+
Steps []Step`yaml:"steps"`
63
65
}
64
66
65
67
// Action describes a metadata file for GitHub actions. The metadata filename must be either action.yml or action.yaml. The data in the metadata file defines the inputs, outputs and main entrypoint for your action.
0 commit comments