Audit and quantify wasted GitHub Actions runtime from cancelled or timed-out runs to eliminate flaky workflow churn and save CI budget.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install github-actions-cancel-waste-audit
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install github-actions-cancel-waste-audit using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
The GitHub Actions Cancel Waste Audit is a powerful utility within the Openclaw Skills ecosystem designed to help DevOps teams and developers identify financial leaks in their CI/CD pipelines. By analyzing GitHub Actions run data, the skill surfaces specific workflows that are consuming resources without providing value, such as those that frequently time out or are manually cancelled due to flakiness.
This skill bridges the gap between raw API data and actionable engineering insights. It allows teams to prioritize workflow refactoring by highlighting the exact repositories and branches where CI minutes are being wasted, ensuring that development resources are focused on productive tasks rather than infrastructure overhead.
To integrate this skill into your workflow, first ensure you have exported your GitHub Actions run data:
gh api repos/<owner>/<repo>/actions/runs --paginate > artifacts/github-actions-runs/audit-data.json
Then, execute the audit script using the following command structure:
RUN_GLOB='artifacts/github-actions-runs/*.json' \
WARN_WASTED_MINUTES=15 \
CRITICAL_WASTED_MINUTES=45 \
bash skills/github-actions-cancel-waste-audit/scripts/cancel-waste-audit.sh
The skill organizes audit data using a structured taxonomy to facilitate easy identification of waste sources. The metadata is processed into the following schema:
| Field | Description |
|---|---|
| Repository | The owner and name of the repository being audited. |
| Workflow | The specific YAML definition responsible for the run. |
| Wasted Minutes | Estimated duration from creation/start until the run was halted. |
| Conclusion | The failure state, specifically filtering for cancelled or timed_out. |
| Critical Flag | A boolean indicator triggered if waste exceeds the CRITICAL_WASTED_MINUTES threshold. |
FAIL_ON_CRITICAL to break CI builds when waste exceeds defined limits.Loading
A static analysis tool designed to audit GitHub Actions workflow files for cache poisoning vulnerabilities and sensitive path leakage.

A specialized audit tool to identify branch-level CI reliability regressions and performance drift compared to mainline releases.

Audit GitHub Actions artifact storage from JSON exports to identify and flag oversized artifacts before they inflate CI costs.

An automated auditing tool that ranks GitHub Actions reliability by identifying high-risk contributors and flaky automation owners through run history analysis.

A specialized audit tool that identifies specific commits causing repeated GitHub Actions workflow failures to help teams prioritize fixes or rollbacks.

Detect and analyze unstable GitHub Actions workflows that frequently flip between success and failure to improve pipeline reliability.








































