ENUM
BuildStatus
Valid strings for the Build.status
field.
link GraphQL Schema definition
1 enum BuildStatus { 2 3 # The build has been approved and is ready for deployment 4 5 6 # The build is available for deployment 7 8 9 # The build has been soft-deleted. 10 11 12 # The build is being deployed. 13 14 15 # The build has been deployed. There can be only one deployed build. 16 17 18 # The build files are being fetched from their source. 19 20 21 # The build failed validation checks. See build report for details. 22 23 24 # The build is deployed but has been paused. Engine processing will not 25 # proceed until the build is un-paused. 26 27 28 # The build has been created but is still pending approval and other 29 # workflow steps. 30 31 32 # The build has been successfully uploaded to the build repository. 33 34 35 # Deployment has failed 36 37 38 # Approval was requested, but denied 39 40 }