Add build status docblock

This commit is contained in:
Bradley Schofield 2022-01-10 14:01:50 +00:00
parent 58e68088fa
commit 6c55c73352
2 changed files with 10 additions and 0 deletions

View file

@ -22,6 +22,11 @@ class Build extends Model
'default' => 0,
'example' => 1592981250,
])
// Build Status
// Failed - The tag build has failed. More details can usually be found in buildStderr
// Ready - The tag build was successful and the tag is ready to be deployed
// Processing - The tag is currently waiting to have a build triggered
// Building - The tag is currently being built
->addRule('status', [
'type' => self::TYPE_STRING,
'description' => 'The build status.',

View file

@ -40,6 +40,11 @@ class Tag extends Model
'default' => 0,
'example' => 128,
])
// Build Status
// Failed - The tag build has failed. More details can usually be found in buildStderr
// Ready - The tag build was successful and the tag is ready to be deployed
// Processing - The tag is currently waiting to have a build triggered
// Building - The tag is currently being built
->addRule('status', [
'type' => self::TYPE_STRING,
'description' => 'The tags current built status',