Skip to content

Latest commit

 

History

History
51 lines (33 loc) · 1.29 KB

File metadata and controls

51 lines (33 loc) · 1.29 KB

📦 Dependabot Issue Bundler

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.).

Installation

# 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-bundler

This walks you through adding the workflow to your repository.

How It Works

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]
Loading

Usage

Configuration

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.

Commands

You can start a run immediately:

gh aw run dependabot-issue-bundler

Human in the Loop

  • Review dependency update PRs for breaking changes
  • Test updated dependencies for compatibility
  • Monitor for issues after updates are deployed