conduit-ui/action
Composer 安装命令:
composer require conduit-ui/action
包简介
GitHub Actions operations for the Conduit agent ecosystem
README 文档
README
Your GitHub Actions bill is too high. Delete stale artifacts, monitor failing workflows, and automate runner management from PHP.
Built for teams tired of manually cleaning up artifacts and babysitting CI/CD pipelines.
The Problem
You're burning money on:
- Artifacts nobody downloaded (storage costs add up fast)
- Failed workflow runs you forgot to rerun
- Workflows running on the wrong branch
- Manual artifact downloads for debugging
- Workflow runs you can't easily track
GitHub charges $0.25/GB for artifact storage. A single forgotten artifact can cost hundreds per month.
Installation
composer require conduit-ui/action
Usage
Stop Wasting Money on Artifacts
use ConduitUI\Action\Facades\Actions; // Find artifacts older than 30 days $artifacts = Actions::listArtifactsForRepository('your-org/your-repo'); $stale = $artifacts->filter(function ($artifact) { return $artifact->createdAt->diffInDays(now()) > 30; }); // Delete them (save $$$ immediately) foreach ($stale as $artifact) { Actions::deleteArtifact('your-org/your-repo', $artifact->id); echo "Deleted {$artifact->name} ({$artifact->sizeInMb()} MB)\n"; } // Savings: $0.25/GB × cleaned storage
Auto-Retry Failed Workflows
// Get failed runs from today $runs = Actions::listWorkflowRuns('your-org/your-repo', [ 'status' => 'completed', 'conclusion' => 'failure', 'created' => '>=' . now()->startOfDay()->toIso8601String(), ]); // Retry only the failed jobs foreach ($runs as $run) { Actions::rerunFailedJobs('your-org/your-repo', $run->id); echo "Retrying failed jobs in run #{$run->runNumber}\n"; }
Download Artifacts for Debugging
// Get the latest build artifact $artifacts = Actions::listArtifactsForWorkflowRun( 'your-org/your-repo', $runId ); $buildArtifact = $artifacts->firstWhere('name', 'build-output'); if ($buildArtifact && !$buildArtifact->isExpired()) { $zipContent = Actions::downloadArtifact( 'your-org/your-repo', $buildArtifact->id ); file_put_contents('/tmp/build.zip', $zipContent); }
Monitor Workflow Health
// Check if CI is healthy $runs = Actions::listWorkflowRuns('your-org/your-repo', [ 'workflow_id' => 'ci.yml', 'branch' => 'main', ]); $recent = $runs->take(10); $failureRate = $recent->filter(fn($r) => $r->wasFailed())->count() / $recent->count(); if ($failureRate > 0.3) { // Alert: CI is failing 30%+ of the time notify("CI health degraded: {$failureRate}% failure rate"); }
Workflow Automation
// Trigger a deployment Actions::createWorkflowDispatch( 'your-org/your-repo', 'deploy.yml', 'main', [ 'environment' => 'production', 'version' => 'v2.4.1', ] ); // Disable a problematic workflow Actions::disableWorkflow('your-org/your-repo', 'broken.yml'); // Enable it after fixing Actions::enableWorkflow('your-org/your-repo', 'broken.yml');
Cost Analysis Dashboard
// Calculate artifact storage costs $artifacts = Actions::listArtifactsForRepository('your-org/your-repo'); $stats = [ 'total_artifacts' => $artifacts->count(), 'total_size_gb' => $artifacts->sum(fn($a) => $a->sizeInMb()) / 1024, 'expired' => $artifacts->filter(fn($a) => $a->isExpired())->count(), 'monthly_cost' => ($artifacts->sum(fn($a) => $a->sizeInMb()) / 1024) * 0.25, ]; // Breakdown by workflow $byWorkflow = $artifacts->groupBy('workflowRun.name')->map(function ($items, $name) { return [ 'count' => $items->count(), 'size_mb' => $items->sum(fn($a) => $a->sizeInMb()), 'cost' => ($items->sum(fn($a) => $a->sizeInMb()) / 1024) * 0.25, ]; });
API Reference
Workflows
Actions::listWorkflows('owner', 'repo') Actions::getWorkflow('owner', 'repo', 'ci.yml') Actions::disableWorkflow('owner', 'repo', 'ci.yml') Actions::enableWorkflow('owner', 'repo', 'ci.yml') Actions::createWorkflowDispatch('owner', 'repo', 'deploy.yml', 'main', ['key' => 'value'])
Workflow Runs
Actions::listWorkflowRuns('owner', 'repo', [ 'status' => 'completed', // queued, in_progress, completed 'conclusion' => 'success', // success, failure, cancelled 'branch' => 'main', 'event' => 'push', // push, pull_request, workflow_dispatch ]) Actions::getWorkflowRun('owner', 'repo', $runId) Actions::cancelWorkflowRun('owner', 'repo', $runId) Actions::rerunWorkflowRun('owner', 'repo', $runId) Actions::rerunFailedJobs('owner', 'repo', $runId) Actions::deleteWorkflowRun('owner', 'repo', $runId)
Jobs
Actions::listJobsForWorkflowRun('owner', 'repo', $runId) Actions::getJob('owner', 'repo', $jobId) Actions::getJobLogs('owner', 'repo', $jobId) Actions::rerunJob('owner', 'repo', $jobId)
Artifacts
Actions::listArtifactsForRepository('owner', 'repo') Actions::listArtifactsForWorkflowRun('owner', 'repo', $runId) Actions::getArtifact('owner', 'repo', $artifactId) Actions::downloadArtifact('owner', 'repo', $artifactId) // Returns ZIP content Actions::deleteArtifact('owner', 'repo', $artifactId)
DTOs
Clean, typed objects for everything:
// WorkflowRun $run->id // int $run->name // string $run->status // queued|in_progress|completed $run->conclusion // success|failure|cancelled|null $run->headBranch // string $run->event // push|pull_request|etc $run->runNumber // int $run->htmlUrl // string $run->isCompleted() // bool $run->wasSuccessful() // bool $run->wasFailed() // bool // Workflow $workflow->id // int $workflow->name // string $workflow->path // string (.github/workflows/ci.yml) $workflow->state // active|disabled $workflow->isActive() // bool // Artifact $artifact->id // int $artifact->name // string $artifact->sizeInBytes // int $artifact->sizeInMb() // float $artifact->expired // bool $artifact->isExpired() // bool $artifact->createdAt // DateTime $artifact->expiresAt // DateTime|null // Job $job->id // int $job->name // string $job->status // queued|in_progress|completed $job->conclusion // success|failure|cancelled|null $job->steps // array<Step> $job->isCompleted() // bool $job->wasSuccessful() // bool
Real-World Examples
Automated Artifact Cleanup (Cron Job)
// Run daily: php artisan schedule:run Schedule::call(function () { $repos = ['your-org/api', 'your-org/frontend', 'your-org/mobile']; foreach ($repos as $repo) { $artifacts = Actions::listArtifactsForRepository($repo); // Delete artifacts older than 7 days $artifacts->filter(fn($a) => $a->createdAt->diffInDays() > 7) ->each(fn($a) => Actions::deleteArtifact($repo, $a->id)); } })->daily();
CI Health Monitoring
// Monitor all workflows $workflows = Actions::listWorkflows('your-org/your-repo'); foreach ($workflows as $workflow) { if (!$workflow->isActive()) continue; $runs = Actions::listWorkflowRuns('your-org/your-repo', [ 'workflow_id' => $workflow->id, ]); $recentRuns = $runs->take(20); $failures = $recentRuns->filter(fn($r) => $r->wasFailed())->count(); if ($failures > 10) { alert("Workflow {$workflow->name} is failing frequently"); } }
Smart Retry Logic
// Only retry transient failures $run = Actions::getWorkflowRun('your-org/your-repo', $runId); if ($run->wasFailed()) { $jobs = Actions::listJobsForWorkflowRun('your-org/your-repo', $runId); // Check if failures look transient (network, timeout) $transient = $jobs->filter(function ($job) { return $job->wasFailed() && str_contains($job->conclusion, 'timeout') || str_contains($job->conclusion, 'network'); }); if ($transient->isNotEmpty()) { Actions::rerunFailedJobs('your-org/your-repo', $runId); } }
Framework Agnostic
Works with any PHP framework:
// Laravel use ConduitUI\Action\Facades\Actions; // Standalone use ConduitUI\Action\Services\ActionsService; use ConduitUI\Connector\GitHub; $github = new GitHub(token: $_ENV['GITHUB_TOKEN']); $actions = new ActionsService($github);
Related Packages
Part of the Conduit UI ecosystem:
- conduit-ui/commit - Commit history analysis
- conduit-ui/pr - Pull request automation
- conduit-ui/issue - Issue management
- conduit-ui/connector - GitHub API client
Enterprise Support
Managing CI/CD at scale across dozens of repos? We provide:
- Custom workflow automation
- Cost optimization audits
- Dedicated support with SLA
Contact: Conduit UI
Testing
composer test
composer analyse
composer format
License
MIT License - see LICENSE
conduit-ui/action 适用场景与选型建议
conduit-ui/action 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 0 次下载、GitHub Stars 达 0, 最近一次更新时间为 2025 年 12 月 11 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「api」 「github」 「laravel」 「Agent」 「actions」 「workflows」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 conduit-ui/action 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 conduit-ui/action 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 conduit-ui/action 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Handles basic OAuth/OAuth2 authentication along with classes for common services
MediaWiki extension that allows embedding external content, specified by URL, into your wiki pages
A PSR-7 compatible library for making CRUD API endpoints
Laravel package for the simplification and integration of many of your users most wanted login providers. Installation is a breeze. Never worry about OAuth again.
GitHub Webhook Listener with plugin-based API for creating your own triggerered actions
Creates a markdown changelog for your GitHub repository.
统计信息
- 总下载量: 0
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 23
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-12-11