Add aliases for new actions tools (#1652)
Build and Test Go Project / build (windows-latest) (push) Has been cancelled
Build and Test Go Project / build (ubuntu-latest) (push) Has been cancelled
CodeQL / Analyze (go) (push) Has been cancelled
CodeQL / Analyze (actions) (push) Has been cancelled
Docker / build (push) Has been cancelled
Build and Test Go Project / build (macos-latest) (push) Has been cancelled
GoReleaser Release / release (push) Has been cancelled
License Check / license-check (push) Has been cancelled
Publish to MCP Registry / publish (push) Has been cancelled

* add aliases for new actions tools

* generate docs
This commit is contained in:
Tommaso Moro
2025-12-19 10:33:23 +00:00
committed by GitHub
parent 311d581520
commit 63c7db030a
2 changed files with 33 additions and 1 deletions
+16 -1
View File
@@ -46,5 +46,20 @@ Will get `issue_read` and `get_file_contents` tools registered, with no errors.
<!-- START AUTOMATED ALIASES -->
| Old Name | New Name |
|----------|----------|
| *(none currently)* | |
| `cancel_workflow_run` | `actions_run_trigger` |
| `delete_workflow_run_logs` | `actions_run_trigger` |
| `download_workflow_run_artifact` | `actions_get` |
| `get_workflow` | `actions_get` |
| `get_workflow_job` | `actions_get` |
| `get_workflow_job_logs` | `actions_get` |
| `get_workflow_run` | `actions_get` |
| `get_workflow_run_logs` | `actions_get` |
| `get_workflow_run_usage` | `actions_get` |
| `list_workflow_jobs` | `actions_list` |
| `list_workflow_run_artifacts` | `actions_list` |
| `list_workflow_runs` | `actions_list` |
| `list_workflows` | `actions_list` |
| `rerun_failed_jobs` | `actions_run_trigger` |
| `rerun_workflow_run` | `actions_run_trigger` |
| `run_workflow` | `actions_run_trigger` |
<!-- END AUTOMATED ALIASES -->
+17
View File
@@ -11,4 +11,21 @@ package github
// "create_pr": "pull_request_create",
var DeprecatedToolAliases = map[string]string{
// Add entries as tools are renamed
// Actions tools consolidated
"list_workflows": "actions_list",
"list_workflow_runs": "actions_list",
"list_workflow_jobs": "actions_list",
"list_workflow_run_artifacts": "actions_list",
"get_workflow": "actions_get",
"get_workflow_run": "actions_get",
"get_workflow_job": "actions_get",
"get_workflow_run_usage": "actions_get",
"get_workflow_run_logs": "actions_get",
"get_workflow_job_logs": "actions_get",
"download_workflow_run_artifact": "actions_get",
"run_workflow": "actions_run_trigger",
"rerun_workflow_run": "actions_run_trigger",
"rerun_failed_jobs": "actions_run_trigger",
"cancel_workflow_run": "actions_run_trigger",
"delete_workflow_run_logs": "actions_run_trigger",
}