diff --git a/run.go b/run.go index 22739824a..dad081898 100644 --- a/run.go +++ b/run.go @@ -73,12 +73,12 @@ const ( RunPolicyChecking RunStatus = "policy_checking" RunPolicyOverride RunStatus = "policy_override" RunPolicySoftFailed RunStatus = "policy_soft_failed" + RunPostPlanAwaitingDecision RunStatus = "post_plan_awaiting_decision" RunPostPlanCompleted RunStatus = "post_plan_completed" RunPostPlanRunning RunStatus = "post_plan_running" RunPrePlanCompleted RunStatus = "pre_plan_completed" RunPrePlanRunning RunStatus = "pre_plan_running" RunQueuing RunStatus = "queuing" - RunPostPlanAwaitingDecision RunStatus = "post_plan_awaiting_decision" ) // RunSource represents a source type of a run. diff --git a/task_stages.go b/task_stages.go index 5cb81ee0d..a707cbfce 100644 --- a/task_stages.go +++ b/task_stages.go @@ -57,7 +57,7 @@ type Permissions struct { // Actions represents a task stage actions type Actions struct { - IsOverridable *bool `jsonapi:"attr, overridable"` + IsOverridable *bool `jsonapi:"attr,is-overridable"` } // TaskStage represents a TFC/E run's stage where run tasks can occur