forked from regadas/github-actions-dhall
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Job.dhall
37 lines (27 loc) · 1.04 KB
/
Job.dhall
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
let Concurrency = ../types/Concurrency.dhall
let Container = ../types/Container.dhall
let Defaults = ../types/Defaults.dhall
let Env = ../types/Env.dhall
let JobEnv = ../types/JobEnv.dhall
let Service = ../types/Service.dhall
let Strategy = ../types/Strategy.dhall
let Permission = ../types/Permission.dhall
let PermissionAccess = ../types/PermissionAccess.dhall
let ContinueOnError = ../types/ContinueOnError.dhall
in { name = None Text
, needs = None (List Text)
, continue-on-error = None ContinueOnError
, strategy = None Strategy
, environment = None JobEnv
, outputs = None (List { mapKey : Text, mapValue : Text })
, env = None Env
, defaults = None Defaults
, timeout-minutes = None Natural
, `if` = None Text
, services = None (List { mapKey : Text, mapValue : Service })
, container = None Container
, concurrency = None Concurrency
, permissions =
None (List { mapKey : Permission, mapValue : PermissionAccess })
, secrets = None (List { mapKey : Text, mapValue : Text })
}