For an overview of all available workflows, see the main README.
Check for Dependabot alerts and manage issues that group updates by runtime/ecosystem
The Dependabot Issue Bundler workflow checks for Dependabot alerts and creates issues grouping updates by ecosystem (Go, Java, etc.).
# Install the 'gh aw' extension
gh extension install github/gh-aw
# Add the workflow to your repository
gh aw add-wizard githubnext/agentics/dependabot-issue-bundlerThis walks you through adding the workflow to your repository.
graph LR
A[Check Dependabot Alerts] --> B[Group by Ecosystem]
B --> C{Alerts Found?}
C -->|Yes| D[Create/Update Issues]
C -->|No| E[Report: All Clear]
This workflow requires no configuration and works out of the box.
After editing run gh aw compile to update the workflow and commit all changes to the default branch.
You can start a run immediately:
gh aw run dependabot-issue-bundler- Review dependency update PRs for breaking changes
- Test updated dependencies for compatibility
- Monitor for issues after updates are deployed