@@ -26,9 +26,9 @@ const (
2626 DescriptionRepositoryName = "Repository name"
2727)
2828
29- // FeatureFlagConsolidatedActions is the feature flag that disables individual actions tools
30- // in favor of the consolidated actions tools.
31- const FeatureFlagConsolidatedActions = "remote_mcp_consolidated_actions "
29+ // FeatureFlagHoldbackConsolidatedActions is the feature flag that, when enabled, reverts to
30+ // individual actions tools instead of the consolidated actions tools.
31+ const FeatureFlagHoldbackConsolidatedActions = "mcp_holdback_consolidated_actions "
3232
3333// Method constants for consolidated actions tools
3434const (
@@ -117,7 +117,7 @@ func ListWorkflows(t translations.TranslationHelperFunc) inventory.ServerTool {
117117 return utils .NewToolResultText (string (r )), nil , nil
118118 },
119119 )
120- tool .FeatureFlagDisable = FeatureFlagConsolidatedActions
120+ tool .FeatureFlagEnable = FeatureFlagHoldbackConsolidatedActions
121121 return tool
122122}
123123
@@ -272,7 +272,7 @@ func ListWorkflowRuns(t translations.TranslationHelperFunc) inventory.ServerTool
272272 return utils .NewToolResultText (string (r )), nil , nil
273273 },
274274 )
275- tool .FeatureFlagDisable = FeatureFlagConsolidatedActions
275+ tool .FeatureFlagEnable = FeatureFlagHoldbackConsolidatedActions
276276 return tool
277277}
278278
@@ -385,7 +385,7 @@ func RunWorkflow(t translations.TranslationHelperFunc) inventory.ServerTool {
385385 return utils .NewToolResultText (string (r )), nil , nil
386386 },
387387 )
388- tool .FeatureFlagDisable = FeatureFlagConsolidatedActions
388+ tool .FeatureFlagEnable = FeatureFlagHoldbackConsolidatedActions
389389 return tool
390390}
391391
@@ -454,7 +454,7 @@ func GetWorkflowRun(t translations.TranslationHelperFunc) inventory.ServerTool {
454454 return utils .NewToolResultText (string (r )), nil , nil
455455 },
456456 )
457- tool .FeatureFlagDisable = FeatureFlagConsolidatedActions
457+ tool .FeatureFlagEnable = FeatureFlagHoldbackConsolidatedActions
458458 return tool
459459}
460460
@@ -533,7 +533,7 @@ func GetWorkflowRunLogs(t translations.TranslationHelperFunc) inventory.ServerTo
533533 return utils .NewToolResultText (string (r )), nil , nil
534534 },
535535 )
536- tool .FeatureFlagDisable = FeatureFlagConsolidatedActions
536+ tool .FeatureFlagEnable = FeatureFlagHoldbackConsolidatedActions
537537 return tool
538538}
539539
@@ -634,7 +634,7 @@ func ListWorkflowJobs(t translations.TranslationHelperFunc) inventory.ServerTool
634634 return utils .NewToolResultText (string (r )), nil , nil
635635 },
636636 )
637- tool .FeatureFlagDisable = FeatureFlagConsolidatedActions
637+ tool .FeatureFlagEnable = FeatureFlagHoldbackConsolidatedActions
638638 return tool
639639}
640640
@@ -746,7 +746,7 @@ func GetJobLogs(t translations.TranslationHelperFunc) inventory.ServerTool {
746746 return utils .NewToolResultError ("Either job_id must be provided for single job logs, or run_id with failed_only=true for failed job logs" ), nil , nil
747747 },
748748 )
749- tool .FeatureFlagDisable = FeatureFlagConsolidatedActions
749+ tool .FeatureFlagEnable = FeatureFlagHoldbackConsolidatedActions
750750 return tool
751751}
752752
@@ -976,7 +976,7 @@ func RerunWorkflowRun(t translations.TranslationHelperFunc) inventory.ServerTool
976976 return utils .NewToolResultText (string (r )), nil , nil
977977 },
978978 )
979- tool .FeatureFlagDisable = FeatureFlagConsolidatedActions
979+ tool .FeatureFlagEnable = FeatureFlagHoldbackConsolidatedActions
980980 return tool
981981}
982982
@@ -1052,7 +1052,7 @@ func RerunFailedJobs(t translations.TranslationHelperFunc) inventory.ServerTool
10521052 return utils .NewToolResultText (string (r )), nil , nil
10531053 },
10541054 )
1055- tool .FeatureFlagDisable = FeatureFlagConsolidatedActions
1055+ tool .FeatureFlagEnable = FeatureFlagHoldbackConsolidatedActions
10561056 return tool
10571057}
10581058
@@ -1130,7 +1130,7 @@ func CancelWorkflowRun(t translations.TranslationHelperFunc) inventory.ServerToo
11301130 return utils .NewToolResultText (string (r )), nil , nil
11311131 },
11321132 )
1133- tool .FeatureFlagDisable = FeatureFlagConsolidatedActions
1133+ tool .FeatureFlagEnable = FeatureFlagHoldbackConsolidatedActions
11341134 return tool
11351135}
11361136
@@ -1211,7 +1211,7 @@ func ListWorkflowRunArtifacts(t translations.TranslationHelperFunc) inventory.Se
12111211 return utils .NewToolResultText (string (r )), nil , nil
12121212 },
12131213 )
1214- tool .FeatureFlagDisable = FeatureFlagConsolidatedActions
1214+ tool .FeatureFlagEnable = FeatureFlagHoldbackConsolidatedActions
12151215 return tool
12161216}
12171217
@@ -1289,7 +1289,7 @@ func DownloadWorkflowRunArtifact(t translations.TranslationHelperFunc) inventory
12891289 return utils .NewToolResultText (string (r )), nil , nil
12901290 },
12911291 )
1292- tool .FeatureFlagDisable = FeatureFlagConsolidatedActions
1292+ tool .FeatureFlagEnable = FeatureFlagHoldbackConsolidatedActions
12931293 return tool
12941294}
12951295
@@ -1366,7 +1366,7 @@ func DeleteWorkflowRunLogs(t translations.TranslationHelperFunc) inventory.Serve
13661366 return utils .NewToolResultText (string (r )), nil , nil
13671367 },
13681368 )
1369- tool .FeatureFlagDisable = FeatureFlagConsolidatedActions
1369+ tool .FeatureFlagEnable = FeatureFlagHoldbackConsolidatedActions
13701370 return tool
13711371}
13721372
@@ -1435,7 +1435,7 @@ func GetWorkflowRunUsage(t translations.TranslationHelperFunc) inventory.ServerT
14351435 return utils .NewToolResultText (string (r )), nil , nil
14361436 },
14371437 )
1438- tool .FeatureFlagDisable = FeatureFlagConsolidatedActions
1438+ tool .FeatureFlagEnable = FeatureFlagHoldbackConsolidatedActions
14391439 return tool
14401440}
14411441
@@ -1631,7 +1631,7 @@ Use this tool to list workflows in a repository, or list workflow runs, jobs, an
16311631 }
16321632 },
16331633 )
1634- tool .FeatureFlagEnable = FeatureFlagConsolidatedActions
1634+ tool .FeatureFlagDisable = FeatureFlagHoldbackConsolidatedActions
16351635 return tool
16361636}
16371637
@@ -1740,7 +1740,7 @@ Use this tool to get details about individual workflows, workflow runs, jobs, an
17401740 }
17411741 },
17421742 )
1743- tool .FeatureFlagEnable = FeatureFlagConsolidatedActions
1743+ tool .FeatureFlagDisable = FeatureFlagHoldbackConsolidatedActions
17441744 return tool
17451745}
17461746
@@ -1859,7 +1859,7 @@ func ActionsRunTrigger(t translations.TranslationHelperFunc) inventory.ServerToo
18591859 }
18601860 },
18611861 )
1862- tool .FeatureFlagEnable = FeatureFlagConsolidatedActions
1862+ tool .FeatureFlagDisable = FeatureFlagHoldbackConsolidatedActions
18631863 return tool
18641864}
18651865
@@ -1977,7 +1977,7 @@ For single job logs, provide job_id. For all failed jobs in a run, provide run_i
19771977 return utils .NewToolResultError ("Either job_id must be provided for single job logs, or run_id with failed_only=true for failed job logs" ), nil , nil
19781978 },
19791979 )
1980- tool .FeatureFlagEnable = FeatureFlagConsolidatedActions
1980+ tool .FeatureFlagDisable = FeatureFlagHoldbackConsolidatedActions
19811981 return tool
19821982}
19831983
0 commit comments