Features
- Add support for the "Search topics" (
GET /search/topics
) API with.search_topics
(@juanluis-garrote) - Add support for the "Disable a workflow" (
PUT /repos/{owner}/{repo}/actions/workflows/{workflow_id}/disable
) GitHub Actions API with.workflow_disable
(@Fryguy) - Add support for the "Enable a workflow" (
PUT /repos/{owner}/{repo}/actions/workflows/{workflow_id}/enable
) GitHub Actions API with.workflow_enable
(@Fryguy) - Add support for the "Get workflow run usage" (
GET /repos/{owner}/{repo}/actions/runs/{run_id}/timing
) GitHub Actions API with.workflow_run_usage
(@mathroule) - Add support for the "Get a job for a workflow run" (
GET /repos/{owner}/{repo}/actions/jobs/{job_id}
) GitHub Actions API with.workflow_run_job
(@mathroule) - Add support for the "Download job logs for a workflow run" (
GET /repos/{owner}/{repo}/actions/jobs/{job_id}/logs
) GitHub Actions API with.workflow_run_job_logs
(@mathroule) - Add support for the "List jobs for a workflow run attempt" (
GET /repos/{owner}/{repo}/actions/runs/{run_id}/attempts/{attempt_number}/jobs
) GitHub Actions API with.workflow_run_attempt_jobs
(@mathroule) - Add support for the "List jobs for a workflow run" (
GET /repos/{owner}/{repo}/actions/runs/{run_id}/jobs
) GitHub Actions API with.workflow_run_jobs
(@mathroule)
Gem development
- Update
rubocop
to1.31.2
and autocorrect Rubocop offences (@timrogers) - Enable new Rubocop cops by default (@timrogers)
- Update
rb-fsevent
to0.11.1
(@timrogers) - Update
vcr
to6.1
(@timrogers)