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
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:
+16
-1
@@ -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 -->
|
||||
|
||||
@@ -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",
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user