Chore: Remove the cache-clearing workflow - #17
Conversation
This repository writes no Actions cache entries, so the cache-clearing workflow offers an operation that can never have anything to act on. An audit of the organisation parsed every workflow and composite action as YAML and classified each step, following `uses:` references through local actions and reusable workflows. Nothing reachable from this repository's workflows uses actions/cache, a caching setup-* action, or a buildx GitHub Actions cache backend. The workflow arrived here from actions-template, which seeded it into every new repository regardless of need. The template no longer carries it. Repositories that do cache now call the reusable workflow in generic-workflows through a thin caller instead. Should this repository ever start caching, adding that caller back is a few lines. Co-Authored-By: Claude <noreply@anthropic.com> Signed-off-by: Matthew Watkins <mwatkins@linuxfoundation.org>
There was a problem hiding this comment.
🟢 Ready to approve
The change cleanly removes an unused workflow and no remaining workflows or actions in the repo appear to use Actions caching.
This review doesn't count toward merge requirements. Sign up for the private preview to control whether Copilot approvals count.
Pull request overview
Removes the repository’s manual “clear Actions cache” workflow because this repo does not create GitHub Actions cache entries, making the workflow operationally unnecessary.
Changes:
- Deleted
.github/workflows/clear-action-cache.yaml, removing the unused cache-housekeeping workflow.
File summaries
| File | Description |
|---|---|
.github/workflows/clear-action-cache.yaml |
Removes the manual cache-clearing workflow that is not applicable to this repository. |
Review details
- Files reviewed: 1/1 changed files
- Comments generated: 0
- Review effort level: Lite
We're testing this review assessment. Please use 👍 or 👎 to tell us if it's correct.
There was a problem hiding this comment.
🟢 Ready to approve
The change is a clean deletion of an unused workflow, and repository workflows show no references to Actions caching or to this workflow.
This review doesn't count toward merge requirements. Sign up for the private preview to control whether Copilot approvals count.
Review details
- Files reviewed: 1/1 changed files
- Comments generated: 0 new
- Review effort level: Lite
We're testing this review assessment. Please use 👍 or 👎 to tell us if it's correct.
tykeal
left a comment
There was a problem hiding this comment.
🤖 Dependamerge
Approved this pull request ✅
Why
This repository writes no Actions cache entries, so the cache-clearing workflow
offers an operation that can never have anything to act on.
An audit of the organisation parsed every workflow and composite action as YAML
and classified each step, following
uses:references through local actions andreusable workflows. Nothing reachable from this repository's workflows uses
actions/cache, a cachingsetup-*action, or a buildx GitHub Actions cachebackend.
Part of a wider clean-up
The workflow arrived here from
actions-template, which seeded it into everynew repository regardless of need. The template
no longer carries it.
Across the organisation:
reusable workflow in
generic-workflowsShould this repository ever start caching, adding the caller back is a few
lines.