Skip to content

Commit eb8da41

Browse files
committed
remove old non-consolidated actions tools
1 parent 63c7db0 commit eb8da41

18 files changed

+127
-3835
lines changed

README.md

Lines changed: 0 additions & 88 deletions
Original file line numberDiff line numberDiff line change
@@ -524,30 +524,6 @@ The following sets of tools are available:
524524
- `run_id`: The ID of the workflow run. Required for all methods except 'run_workflow'. (number, optional)
525525
- `workflow_id`: The workflow ID (numeric) or workflow file name (e.g., main.yml, ci.yaml). Required for 'run_workflow' method. (string, optional)
526526

527-
- **cancel_workflow_run** - Cancel workflow run
528-
- `owner`: Repository owner (string, required)
529-
- `repo`: Repository name (string, required)
530-
- `run_id`: The unique identifier of the workflow run (number, required)
531-
532-
- **delete_workflow_run_logs** - Delete workflow logs
533-
- `owner`: Repository owner (string, required)
534-
- `repo`: Repository name (string, required)
535-
- `run_id`: The unique identifier of the workflow run (number, required)
536-
537-
- **download_workflow_run_artifact** - Download workflow artifact
538-
- `artifact_id`: The unique identifier of the artifact (number, required)
539-
- `owner`: Repository owner (string, required)
540-
- `repo`: Repository name (string, required)
541-
542-
- **get_job_logs** - Get job logs
543-
- `failed_only`: When true, gets logs for all failed jobs in run_id (boolean, optional)
544-
- `job_id`: The unique identifier of the workflow job (required for single job logs) (number, optional)
545-
- `owner`: Repository owner (string, required)
546-
- `repo`: Repository name (string, required)
547-
- `return_content`: Returns actual log content instead of URLs (boolean, optional)
548-
- `run_id`: Workflow run ID (required when using failed_only) (number, optional)
549-
- `tail_lines`: Number of lines to return from the end of the log (number, optional)
550-
551527
- **get_job_logs** - Get GitHub Actions workflow job logs
552528
- `failed_only`: When true, gets logs for all failed jobs in the workflow run specified by run_id. Requires run_id to be provided. (boolean, optional)
553529
- `job_id`: The unique identifier of the workflow job. Required when getting logs for a single job. (number, optional)
@@ -557,70 +533,6 @@ The following sets of tools are available:
557533
- `run_id`: The unique identifier of the workflow run. Required when failed_only is true to get logs for all failed jobs in the run. (number, optional)
558534
- `tail_lines`: Number of lines to return from the end of the log (number, optional)
559535

560-
- **get_workflow_run** - Get workflow run
561-
- `owner`: Repository owner (string, required)
562-
- `repo`: Repository name (string, required)
563-
- `run_id`: The unique identifier of the workflow run (number, required)
564-
565-
- **get_workflow_run_logs** - Get workflow run logs
566-
- `owner`: Repository owner (string, required)
567-
- `repo`: Repository name (string, required)
568-
- `run_id`: The unique identifier of the workflow run (number, required)
569-
570-
- **get_workflow_run_usage** - Get workflow usage
571-
- `owner`: Repository owner (string, required)
572-
- `repo`: Repository name (string, required)
573-
- `run_id`: The unique identifier of the workflow run (number, required)
574-
575-
- **list_workflow_jobs** - List workflow jobs
576-
- `filter`: Filters jobs by their completed_at timestamp (string, optional)
577-
- `owner`: Repository owner (string, required)
578-
- `page`: Page number for pagination (min 1) (number, optional)
579-
- `perPage`: Results per page for pagination (min 1, max 100) (number, optional)
580-
- `repo`: Repository name (string, required)
581-
- `run_id`: The unique identifier of the workflow run (number, required)
582-
583-
- **list_workflow_run_artifacts** - List workflow artifacts
584-
- `owner`: Repository owner (string, required)
585-
- `page`: Page number for pagination (min 1) (number, optional)
586-
- `perPage`: Results per page for pagination (min 1, max 100) (number, optional)
587-
- `repo`: Repository name (string, required)
588-
- `run_id`: The unique identifier of the workflow run (number, required)
589-
590-
- **list_workflow_runs** - List workflow runs
591-
- `actor`: Returns someone's workflow runs. Use the login for the user who created the workflow run. (string, optional)
592-
- `branch`: Returns workflow runs associated with a branch. Use the name of the branch. (string, optional)
593-
- `event`: Returns workflow runs for a specific event type (string, optional)
594-
- `owner`: Repository owner (string, required)
595-
- `page`: Page number for pagination (min 1) (number, optional)
596-
- `perPage`: Results per page for pagination (min 1, max 100) (number, optional)
597-
- `repo`: Repository name (string, required)
598-
- `status`: Returns workflow runs with the check run status (string, optional)
599-
- `workflow_id`: The workflow ID or workflow file name (string, required)
600-
601-
- **list_workflows** - List workflows
602-
- `owner`: Repository owner (string, required)
603-
- `page`: Page number for pagination (min 1) (number, optional)
604-
- `perPage`: Results per page for pagination (min 1, max 100) (number, optional)
605-
- `repo`: Repository name (string, required)
606-
607-
- **rerun_failed_jobs** - Rerun failed jobs
608-
- `owner`: Repository owner (string, required)
609-
- `repo`: Repository name (string, required)
610-
- `run_id`: The unique identifier of the workflow run (number, required)
611-
612-
- **rerun_workflow_run** - Rerun workflow run
613-
- `owner`: Repository owner (string, required)
614-
- `repo`: Repository name (string, required)
615-
- `run_id`: The unique identifier of the workflow run (number, required)
616-
617-
- **run_workflow** - Run workflow
618-
- `inputs`: Inputs the workflow accepts (object, optional)
619-
- `owner`: Repository owner (string, required)
620-
- `ref`: The git reference for the workflow. The reference can be a branch or tag name. (string, required)
621-
- `repo`: Repository name (string, required)
622-
- `workflow_id`: The workflow ID (numeric) or workflow file name (e.g., main.yml, ci.yaml) (string, required)
623-
624536
</details>
625537

626538
<details>

pkg/github/__toolsnaps__/cancel_workflow_run.snap

Lines changed: 0 additions & 29 deletions
This file was deleted.

pkg/github/__toolsnaps__/delete_workflow_run_logs.snap

Lines changed: 0 additions & 30 deletions
This file was deleted.

pkg/github/__toolsnaps__/download_workflow_run_artifact.snap

Lines changed: 0 additions & 30 deletions
This file was deleted.

pkg/github/__toolsnaps__/get_job_logs.snap

Lines changed: 0 additions & 46 deletions
This file was deleted.

pkg/github/__toolsnaps__/get_workflow_run.snap

Lines changed: 0 additions & 30 deletions
This file was deleted.

pkg/github/__toolsnaps__/get_workflow_run_logs.snap

Lines changed: 0 additions & 30 deletions
This file was deleted.

pkg/github/__toolsnaps__/get_workflow_run_usage.snap

Lines changed: 0 additions & 30 deletions
This file was deleted.

pkg/github/__toolsnaps__/list_workflow_jobs.snap

Lines changed: 0 additions & 49 deletions
This file was deleted.

0 commit comments

Comments
 (0)