ark-dependabot-management
Installation
SKILL.md
Ark Dependabot Management
Consolidate open Dependabot PRs into a single integration branch for unified review and merge.
Strategy
All open Dependabot PRs get merged into a single integration/dependabot branch which has one PR into main. This avoids CI churn from merging individual dependency bumps.
Pre-flight: Check for stale config
Before consolidating, verify all directories in .github/dependabot.yaml still exist:
yq '.updates[].directory // .updates[].directories[]' .github/dependabot.yaml | while read dir; do
[ ! -d "$dir" ] && echo "STALE: $dir"
done
Remove stale entries before proceeding — they cause Dependabot workflow errors.