@@ -514,6 +514,8 @@ type RootMutationType {
514
514
"the id of the PR automation instance to use"
515
515
id : ID !
516
516
517
+ identifier : String
518
+
517
519
branch : String
518
520
519
521
context : Json
@@ -742,7 +744,7 @@ type RootMutationType {
742
744
deleteCustomStackRun (id : ID ! ): CustomStackRun
743
745
744
746
"Creates a custom run, with the given command list, to execute w\/in the stack's environment"
745
- onDemandRun (stackId : ID ! , commands : [CommandAttributes ]): StackRun
747
+ onDemandRun (stackId : ID ! , commands : [CommandAttributes ], context : Json ): StackRun
746
748
747
749
upsertObservabilityProvider (attributes : ObservabilityProviderAttributes ! ): ObservabilityProvider
748
750
@@ -757,7 +759,7 @@ type RootMutationType {
757
759
updateProject (id : ID ! , attributes : ProjectAttributes ! ): Project
758
760
759
761
"a reusable mutation for updating rbac settings on core services"
760
- updateRbac (rbac : RbacAttributes ! , serviceId : ID , clusterId : ID , providerId : ID , pipelineId : ID ): Boolean
762
+ updateRbac (rbac : RbacAttributes ! , serviceId : ID , clusterId : ID , providerId : ID , pipelineId : ID , stackId : ID ): Boolean
761
763
}
762
764
763
765
type RootSubscriptionType {
@@ -2312,6 +2314,9 @@ input PromotionCriteriaAttributes {
2312
2314
"the id of a pr automation to update this service"
2313
2315
prAutomationId : ID
2314
2316
2317
+ "overrides the repository slug for the referenced pr automation"
2318
+ repository : String
2319
+
2315
2320
"the secrets to copy over in a promotion"
2316
2321
secrets : [String ]
2317
2322
}
@@ -2375,6 +2380,9 @@ type PipelineStage {
2375
2380
"the name of this stage (eg dev, prod, staging)"
2376
2381
name : String !
2377
2382
2383
+ "the errors for this stage"
2384
+ errors : [ServiceError ]
2385
+
2378
2386
"the services within this stage"
2379
2387
services : [StageService ]
2380
2388
@@ -2515,6 +2523,9 @@ type StageService {
2515
2523
type PromotionCriteria {
2516
2524
id : ID !
2517
2525
2526
+ "overrides the repository slug for the referenced pr automation"
2527
+ repository : String
2528
+
2518
2529
"the source service in a prior stage to promote settings from"
2519
2530
source : ServiceDeployment
2520
2531
0 commit comments